Use ui_file_as_string in gdbarch.sh/gdbarch.c
[deliverable/binutils-gdb.git] / gdb / language.c
CommitLineData
c906108c 1/* Multiple source language support for GDB.
1bac305b 2
618f726f 3 Copyright (C) 1991-2016 Free Software Foundation, Inc.
1bac305b 4
c906108c
SS
5 Contributed by the Department of Computer Science at the State University
6 of New York at Buffalo.
7
c5aa993b 8 This file is part of GDB.
c906108c 9
c5aa993b
JM
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
a9762ec7 12 the Free Software Foundation; either version 3 of the License, or
c5aa993b 13 (at your option) any later version.
c906108c 14
c5aa993b
JM
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
c906108c 19
c5aa993b 20 You should have received a copy of the GNU General Public License
a9762ec7 21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
22
23/* This file contains functions that return things that are specific
24 to languages. Each function should examine current_language if necessary,
1777feb0 25 and return the appropriate result. */
c906108c
SS
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>
c906108c
SS
33#include "symtab.h"
34#include "gdbtypes.h"
35#include "value.h"
36#include "gdbcmd.h"
c906108c
SS
37#include "expression.h"
38#include "language.h"
a53b64ea 39#include "varobj.h"
c906108c
SS
40#include "target.h"
41#include "parser-defs.h"
9a3d7dfd 42#include "demangle.h"
8b60591b 43#include "symfile.h"
8de20a37 44#include "cp-support.h"
06096720 45#include "frame.h"
c906108c 46
a14ed312 47extern void _initialize_language (void);
392a587b 48
a14ed312 49static void unk_lang_error (char *);
c906108c 50
410a0ff2 51static int unk_lang_parser (struct parser_state *);
c906108c 52
a14ed312 53static void show_check (char *, int);
c906108c 54
a14ed312 55static void set_check (char *, int);
c906108c 56
a451cb65 57static void set_range_case (void);
c906108c 58
6c7a06a3
TT
59static void unk_lang_emit_char (int c, struct type *type,
60 struct ui_file *stream, int quoter);
c906108c 61
6c7a06a3
TT
62static void unk_lang_printchar (int c, struct type *type,
63 struct ui_file *stream);
c906108c 64
8e069a98
TT
65static void unk_lang_value_print (struct value *, struct ui_file *,
66 const struct value_print_options *);
c906108c 67
52f729a7 68static CORE_ADDR unk_lang_trampoline (struct frame_info *, CORE_ADDR pc);
f636b87d 69
c906108c
SS
70/* Forward declaration */
71extern const struct language_defn unknown_language_defn;
c5aa993b 72
c906108c 73/* The current (default at startup) state of type and range checking.
c5aa993b
JM
74 (If the modes are set to "auto", though, these are changed based
75 on the default language at startup, and then again based on the
76 language of the first source file. */
c906108c
SS
77
78enum range_mode range_mode = range_mode_auto;
79enum range_check range_check = range_check_off;
63872f9d
JG
80enum case_mode case_mode = case_mode_auto;
81enum case_sensitivity case_sensitivity = case_sensitive_on;
c906108c 82
1777feb0 83/* The current language and language_mode (see language.h). */
c906108c
SS
84
85const struct language_defn *current_language = &unknown_language_defn;
86enum language_mode language_mode = language_mode_auto;
87
88/* The language that the user expects to be typing in (the language
89 of main(), or the last language we notified them about, or C). */
90
91const struct language_defn *expected_language;
92
93/* The list of supported languages. The list itself is malloc'd. */
94
95static const struct language_defn **languages;
96static unsigned languages_size;
97static unsigned languages_allocsize;
98#define DEFAULT_ALLOCSIZE 4
99
b84aa90a
PA
100/* The current values of the "set language/type/range" enum
101 commands. */
102static const char *language;
103static const char *type;
104static const char *range;
105static const char *case_sensitive;
c906108c
SS
106
107/* Warning issued when current_language and the language of the current
1777feb0 108 frame do not match. */
c906108c 109char lang_frame_mismatch_warn[] =
c5aa993b 110"Warning: the current language does not match this frame.";
c906108c
SS
111\f
112/* This page contains the functions corresponding to GDB commands
1777feb0 113 and their helpers. */
c906108c
SS
114
115/* Show command. Display a warning if the language set
1777feb0 116 does not match the frame. */
c906108c 117static void
4d28ad1e
AC
118show_language_command (struct ui_file *file, int from_tty,
119 struct cmd_list_element *c, const char *value)
c906108c 120{
7ff38b1c 121 enum language flang; /* The language of the frame. */
c906108c 122
b84aa90a
PA
123 if (language_mode == language_mode_auto)
124 fprintf_filtered (gdb_stdout,
125 _("The current source language is "
126 "\"auto; currently %s\".\n"),
127 current_language->la_name);
128 else
3e43a32a
MS
129 fprintf_filtered (gdb_stdout,
130 _("The current source language is \"%s\".\n"),
b84aa90a
PA
131 current_language->la_name);
132
7ff38b1c
AB
133 if (has_stack_frames ())
134 {
135 struct frame_info *frame;
136
137 frame = get_selected_frame (NULL);
138 flang = get_frame_language (frame);
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);
143 }
c906108c
SS
144}
145
1777feb0 146/* Set command. Change the current working language. */
c906108c 147static void
4d28ad1e 148set_language_command (char *ignore, int from_tty, struct cmd_list_element *c)
c906108c 149{
5efd5804 150 int i;
7ff38b1c 151 enum language flang = language_unknown;
c906108c
SS
152
153 /* Search the list of languages for a match. */
c5aa993b
JM
154 for (i = 0; i < languages_size; i++)
155 {
6314a349 156 if (strcmp (languages[i]->la_name, language) == 0)
c5aa993b
JM
157 {
158 /* Found it! Go into manual mode, and use this language. */
159 if (languages[i]->la_language == language_auto)
160 {
8b60591b
JB
161 /* Enter auto mode. Set to the current frame's language, if
162 known, or fallback to the initial language. */
c5aa993b 163 language_mode = language_mode_auto;
7ff38b1c
AB
164 TRY
165 {
166 struct frame_info *frame;
167
168 frame = get_selected_frame (NULL);
169 flang = get_frame_language (frame);
170 }
171 CATCH (ex, RETURN_MASK_ERROR)
172 {
173 flang = language_unknown;
174 }
175 END_CATCH
176
c5aa993b
JM
177 if (flang != language_unknown)
178 set_language (flang);
8b60591b
JB
179 else
180 set_initial_language ();
c5aa993b
JM
181 expected_language = current_language;
182 return;
183 }
184 else
185 {
186 /* Enter manual mode. Set the specified language. */
187 language_mode = language_mode_manual;
188 current_language = languages[i];
a451cb65 189 set_range_case ();
c5aa993b
JM
190 expected_language = current_language;
191 return;
192 }
193 }
c906108c 194 }
c906108c 195
b84aa90a
PA
196 internal_error (__FILE__, __LINE__,
197 "Couldn't find language `%s' in known languages list.",
198 language);
c906108c
SS
199}
200
c906108c 201/* Show command. Display a warning if the range setting does
1777feb0 202 not match the current language. */
c906108c 203static void
4d28ad1e
AC
204show_range_command (struct ui_file *file, int from_tty,
205 struct cmd_list_element *c, const char *value)
c906108c 206{
b84aa90a
PA
207 if (range_mode == range_mode_auto)
208 {
209 char *tmp;
210
211 switch (range_check)
212 {
213 case range_check_on:
214 tmp = "on";
215 break;
216 case range_check_off:
217 tmp = "off";
218 break;
219 case range_check_warn:
220 tmp = "warn";
221 break;
222 default:
223 internal_error (__FILE__, __LINE__,
224 "Unrecognized range check setting.");
225 }
226
227 fprintf_filtered (gdb_stdout,
228 _("Range checking is \"auto; currently %s\".\n"),
229 tmp);
230 }
231 else
232 fprintf_filtered (gdb_stdout, _("Range checking is \"%s\".\n"),
233 value);
234
c5aa993b 235 if (range_check != current_language->la_range_check)
b84aa90a
PA
236 warning (_("the current range check setting "
237 "does not match the language.\n"));
c906108c
SS
238}
239
1777feb0 240/* Set command. Change the setting for range checking. */
c906108c 241static void
4d28ad1e 242set_range_command (char *ignore, int from_tty, struct cmd_list_element *c)
c906108c 243{
6314a349 244 if (strcmp (range, "on") == 0)
c5aa993b 245 {
c906108c
SS
246 range_check = range_check_on;
247 range_mode = range_mode_manual;
c5aa993b 248 }
6314a349 249 else if (strcmp (range, "warn") == 0)
c5aa993b 250 {
c906108c
SS
251 range_check = range_check_warn;
252 range_mode = range_mode_manual;
c5aa993b 253 }
6314a349 254 else if (strcmp (range, "off") == 0)
c5aa993b 255 {
c906108c
SS
256 range_check = range_check_off;
257 range_mode = range_mode_manual;
c5aa993b 258 }
6314a349 259 else if (strcmp (range, "auto") == 0)
c5aa993b 260 {
c906108c 261 range_mode = range_mode_auto;
a451cb65 262 set_range_case ();
c906108c 263 return;
c5aa993b 264 }
c4093a6a
JM
265 else
266 {
b84aa90a
PA
267 internal_error (__FILE__, __LINE__,
268 _("Unrecognized range check setting: \"%s\""), range);
c4093a6a 269 }
b84aa90a
PA
270 if (range_check != current_language->la_range_check)
271 warning (_("the current range check setting "
272 "does not match the language.\n"));
c906108c
SS
273}
274
63872f9d 275/* Show command. Display a warning if the case sensitivity setting does
1777feb0 276 not match the current language. */
63872f9d 277static void
4d28ad1e
AC
278show_case_command (struct ui_file *file, int from_tty,
279 struct cmd_list_element *c, const char *value)
63872f9d 280{
b84aa90a
PA
281 if (case_mode == case_mode_auto)
282 {
283 char *tmp = NULL;
284
285 switch (case_sensitivity)
286 {
287 case case_sensitive_on:
288 tmp = "on";
289 break;
290 case case_sensitive_off:
291 tmp = "off";
292 break;
293 default:
294 internal_error (__FILE__, __LINE__,
295 "Unrecognized case-sensitive setting.");
296 }
297
298 fprintf_filtered (gdb_stdout,
299 _("Case sensitivity in "
300 "name search is \"auto; currently %s\".\n"),
301 tmp);
302 }
303 else
3e43a32a
MS
304 fprintf_filtered (gdb_stdout,
305 _("Case sensitivity in name search is \"%s\".\n"),
b84aa90a
PA
306 value);
307
4d28ad1e 308 if (case_sensitivity != current_language->la_case_sensitivity)
b84aa90a
PA
309 warning (_("the current case sensitivity setting does not match "
310 "the language.\n"));
63872f9d
JG
311}
312
591e78ff
MK
313/* Set command. Change the setting for case sensitivity. */
314
63872f9d 315static void
4d28ad1e 316set_case_command (char *ignore, int from_tty, struct cmd_list_element *c)
63872f9d 317{
591e78ff
MK
318 if (strcmp (case_sensitive, "on") == 0)
319 {
320 case_sensitivity = case_sensitive_on;
321 case_mode = case_mode_manual;
322 }
323 else if (strcmp (case_sensitive, "off") == 0)
324 {
325 case_sensitivity = case_sensitive_off;
326 case_mode = case_mode_manual;
327 }
328 else if (strcmp (case_sensitive, "auto") == 0)
329 {
330 case_mode = case_mode_auto;
a451cb65 331 set_range_case ();
591e78ff
MK
332 return;
333 }
63872f9d 334 else
591e78ff 335 {
b84aa90a
PA
336 internal_error (__FILE__, __LINE__,
337 "Unrecognized case-sensitive setting: \"%s\"",
338 case_sensitive);
591e78ff 339 }
b84aa90a
PA
340
341 if (case_sensitivity != current_language->la_case_sensitivity)
342 warning (_("the current case sensitivity setting does not match "
343 "the language.\n"));
63872f9d
JG
344}
345
346/* Set the status of range and type checking and case sensitivity based on
c906108c
SS
347 the current modes and the current language.
348 If SHOW is non-zero, then print out the current language,
1777feb0 349 type and range checking status. */
c906108c 350static void
a451cb65 351set_range_case (void)
c906108c 352{
c906108c
SS
353 if (range_mode == range_mode_auto)
354 range_check = current_language->la_range_check;
355
63872f9d
JG
356 if (case_mode == case_mode_auto)
357 case_sensitivity = current_language->la_case_sensitivity;
c906108c
SS
358}
359
1777feb0
MS
360/* Set current language to (enum language) LANG. Returns previous
361 language. */
c906108c
SS
362
363enum language
fba45db2 364set_language (enum language lang)
c906108c
SS
365{
366 int i;
367 enum language prev_language;
368
369 prev_language = current_language->la_language;
370
c5aa993b
JM
371 for (i = 0; i < languages_size; i++)
372 {
373 if (languages[i]->la_language == lang)
374 {
375 current_language = languages[i];
a451cb65 376 set_range_case ();
c5aa993b
JM
377 break;
378 }
c906108c 379 }
c906108c
SS
380
381 return prev_language;
382}
383\f
c906108c
SS
384
385/* Print out the current language settings: language, range and
386 type checking. If QUIETLY, print only what has changed. */
387
388void
fba45db2 389language_info (int quietly)
c906108c
SS
390{
391 if (quietly && expected_language == current_language)
392 return;
393
394 expected_language = current_language;
a3f17187 395 printf_unfiltered (_("Current language: %s\n"), language);
4d28ad1e 396 show_language_command (NULL, 1, NULL, NULL);
c906108c
SS
397
398 if (!quietly)
399 {
a3f17187 400 printf_unfiltered (_("Range checking: %s\n"), range);
4d28ad1e 401 show_range_command (NULL, 1, NULL, NULL);
a3f17187 402 printf_unfiltered (_("Case sensitivity: %s\n"), case_sensitive);
4d28ad1e 403 show_case_command (NULL, 1, NULL, NULL);
c906108c
SS
404 }
405}
406\f
c906108c 407
1777feb0 408/* Returns non-zero if the value is a pointer type. */
c906108c 409int
fba45db2 410pointer_type (struct type *type)
c906108c 411{
c5aa993b
JM
412 return TYPE_CODE (type) == TYPE_CODE_PTR ||
413 TYPE_CODE (type) == TYPE_CODE_REF;
c906108c
SS
414}
415
c906108c 416\f
c906108c 417/* This page contains functions that return info about
1777feb0 418 (struct value) values used in GDB. */
c906108c 419
1777feb0 420/* Returns non-zero if the value VAL represents a true value. */
c906108c 421int
3d6d86c6 422value_true (struct value *val)
c906108c
SS
423{
424 /* It is possible that we should have some sort of error if a non-boolean
425 value is used in this context. Possibly dependent on some kind of
426 "boolean-checking" option like range checking. But it should probably
427 not depend on the language except insofar as is necessary to identify
428 a "boolean" value (i.e. in C using a float, pointer, etc., as a boolean
429 should be an error, probably). */
430 return !value_logical_not (val);
431}
432\f
c906108c
SS
433/* This page contains functions for the printing out of
434 error messages that occur during type- and range-
1777feb0 435 checking. */
c906108c 436
a451cb65 437/* This is called when a language fails a range-check. The
ddfe3c15 438 first argument should be a printf()-style format string, and the
a451cb65
KS
439 rest of the arguments should be its arguments. If range_check is
440 range_check_on, an error is printed; if range_check_warn, a warning;
441 otherwise just the message. */
c906108c
SS
442
443void
ddfe3c15 444range_error (const char *string,...)
c906108c 445{
c5aa993b 446 va_list args;
c906108c 447
e0881a8e 448 va_start (args, string);
ddfe3c15
AC
449 switch (range_check)
450 {
451 case range_check_warn:
452 vwarning (string, args);
453 break;
454 case range_check_on:
455 verror (string, args);
456 break;
457 case range_check_off:
458 /* FIXME: cagney/2002-01-30: Should this function print anything
459 when range error is off? */
460 vfprintf_filtered (gdb_stderr, string, args);
461 fprintf_filtered (gdb_stderr, "\n");
462 break;
463 default:
e2e0b3e5 464 internal_error (__FILE__, __LINE__, _("bad switch"));
ddfe3c15 465 }
c5aa993b 466 va_end (args);
c906108c 467}
c906108c 468\f
c5aa993b 469
1777feb0 470/* This page contains miscellaneous functions. */
c906108c 471
1777feb0 472/* Return the language enum for a given language string. */
c906108c
SS
473
474enum language
fba45db2 475language_enum (char *str)
c906108c
SS
476{
477 int i;
478
c5aa993b 479 for (i = 0; i < languages_size; i++)
591e78ff 480 if (strcmp (languages[i]->la_name, str) == 0)
c906108c
SS
481 return languages[i]->la_language;
482
483 return language_unknown;
484}
485
1777feb0 486/* Return the language struct for a given language enum. */
c906108c
SS
487
488const struct language_defn *
fba45db2 489language_def (enum language lang)
c906108c
SS
490{
491 int i;
492
c5aa993b
JM
493 for (i = 0; i < languages_size; i++)
494 {
495 if (languages[i]->la_language == lang)
496 {
497 return languages[i];
498 }
c906108c 499 }
c906108c
SS
500 return NULL;
501}
502
1777feb0 503/* Return the language as a string. */
27cd387b 504const char *
fba45db2 505language_str (enum language lang)
c906108c
SS
506{
507 int i;
508
c5aa993b
JM
509 for (i = 0; i < languages_size; i++)
510 {
511 if (languages[i]->la_language == lang)
512 {
513 return languages[i]->la_name;
514 }
c906108c 515 }
c906108c
SS
516 return "Unknown";
517}
518
519static void
fba45db2 520set_check (char *ignore, int from_tty)
c906108c 521{
c5aa993b
JM
522 printf_unfiltered (
523 "\"set check\" must be followed by the name of a check subcommand.\n");
635c7e8a 524 help_list (setchecklist, "set check ", all_commands, gdb_stdout);
c906108c
SS
525}
526
527static void
fba45db2 528show_check (char *ignore, int from_tty)
c906108c 529{
c5aa993b 530 cmd_show_list (showchecklist, from_tty, "");
c906108c
SS
531}
532\f
533/* Add a language to the set of known languages. */
534
535void
fba45db2 536add_language (const struct language_defn *lang)
c906108c 537{
b84aa90a 538 /* For the "set language" command. */
27cd387b 539 static const char **language_names = NULL;
b84aa90a 540 /* For the "help set language" command. */
1eefb858 541 char *language_set_doc = NULL;
b84aa90a
PA
542
543 int i;
544 struct ui_file *tmp_stream;
b84aa90a 545
c906108c
SS
546 if (lang->la_magic != LANG_MAGIC)
547 {
3e43a32a
MS
548 fprintf_unfiltered (gdb_stderr,
549 "Magic number of %s language struct wrong\n",
c5aa993b 550 lang->la_name);
3e43a32a
MS
551 internal_error (__FILE__, __LINE__,
552 _("failed internal consistency check"));
c906108c
SS
553 }
554
555 if (!languages)
556 {
557 languages_allocsize = DEFAULT_ALLOCSIZE;
8d749320 558 languages = XNEWVEC (const struct language_defn *, languages_allocsize);
c906108c
SS
559 }
560 if (languages_size >= languages_allocsize)
561 {
562 languages_allocsize *= 2;
563 languages = (const struct language_defn **) xrealloc ((char *) languages,
c5aa993b 564 languages_allocsize * sizeof (*languages));
c906108c
SS
565 }
566 languages[languages_size++] = lang;
b84aa90a
PA
567
568 /* Build the language names array, to be used as enumeration in the
569 set language" enum command. */
224c3ddb
SM
570 language_names = XRESIZEVEC (const char *, language_names,
571 languages_size + 1);
572
b84aa90a
PA
573 for (i = 0; i < languages_size; ++i)
574 language_names[i] = languages[i]->la_name;
575 language_names[i] = NULL;
576
56618e20
TT
577 /* Add the filename extensions. */
578 if (lang->la_filename_extensions != NULL)
579 {
580 int i;
581
582 for (i = 0; lang->la_filename_extensions[i] != NULL; ++i)
583 add_filename_language (lang->la_filename_extensions[i],
584 lang->la_language);
585 }
586
b84aa90a
PA
587 /* Build the "help set language" docs. */
588 tmp_stream = mem_fileopen ();
589
3e43a32a
MS
590 fprintf_unfiltered (tmp_stream,
591 _("Set the current source language.\n"
592 "The currently understood settings are:\n\nlocal or "
593 "auto Automatic setting based on source file\n"));
b84aa90a
PA
594
595 for (i = 0; i < languages_size; ++i)
596 {
597 /* Already dealt with these above. */
598 if (languages[i]->la_language == language_unknown
599 || languages[i]->la_language == language_auto)
600 continue;
601
602 /* FIXME: i18n: for now assume that the human-readable name
603 is just a capitalization of the internal name. */
604 fprintf_unfiltered (tmp_stream, "%-16s Use the %c%s language\n",
605 languages[i]->la_name,
606 /* Capitalize first letter of language
607 name. */
608 toupper (languages[i]->la_name[0]),
609 languages[i]->la_name + 1);
610 }
611
759ef836 612 language_set_doc = ui_file_xstrdup (tmp_stream, NULL);
b84aa90a
PA
613 ui_file_delete (tmp_stream);
614
615 add_setshow_enum_cmd ("language", class_support,
616 (const char **) language_names,
617 &language,
3e43a32a
MS
618 language_set_doc,
619 _("Show the current source language."),
620 NULL, set_language_command,
b84aa90a
PA
621 show_language_command,
622 &setlist, &showlist);
1eefb858
TT
623
624 xfree (language_set_doc);
c906108c
SS
625}
626
f636b87d
AF
627/* Iterate through all registered languages looking for and calling
628 any non-NULL struct language_defn.skip_trampoline() functions.
629 Return the result from the first that returns non-zero, or 0 if all
630 `fail'. */
631CORE_ADDR
52f729a7 632skip_language_trampoline (struct frame_info *frame, CORE_ADDR pc)
f636b87d
AF
633{
634 int i;
635
636 for (i = 0; i < languages_size; i++)
637 {
638 if (languages[i]->skip_trampoline)
639 {
52f729a7 640 CORE_ADDR real_pc = (languages[i]->skip_trampoline) (frame, pc);
e0881a8e 641
f636b87d
AF
642 if (real_pc)
643 return real_pc;
644 }
645 }
646
647 return 0;
648}
649
1777feb0 650/* Return demangled language symbol, or NULL.
9a3d7dfd
AF
651 FIXME: Options are only useful for certain languages and ignored
652 by others, so it would be better to remove them here and have a
1777feb0 653 more flexible demangler for the languages that need it.
9a3d7dfd
AF
654 FIXME: Sometimes the demangler is invoked when we don't know the
655 language, so we can't use this everywhere. */
656char *
657language_demangle (const struct language_defn *current_language,
658 const char *mangled, int options)
659{
660 if (current_language != NULL && current_language->la_demangle)
661 return current_language->la_demangle (mangled, options);
662 return NULL;
663}
664
8b302db8
TT
665/* See langauge.h. */
666
667int
668language_sniff_from_mangled_name (const struct language_defn *lang,
669 const char *mangled, char **demangled)
670{
671 gdb_assert (lang != NULL);
672
673 if (lang->la_sniff_from_mangled_name == NULL)
674 {
675 *demangled = NULL;
676 return 0;
677 }
678
679 return lang->la_sniff_from_mangled_name (mangled, demangled);
680}
681
31c27f77
JJ
682/* Return class name from physname or NULL. */
683char *
79b97fa8 684language_class_name_from_physname (const struct language_defn *lang,
31c27f77
JJ
685 const char *physname)
686{
79b97fa8
TT
687 if (lang != NULL && lang->la_class_name_from_physname)
688 return lang->la_class_name_from_physname (physname);
31c27f77
JJ
689 return NULL;
690}
691
41f1b697
DJ
692/* Return non-zero if TYPE should be passed (and returned) by
693 reference at the language level. */
694int
695language_pass_by_reference (struct type *type)
696{
697 return current_language->la_pass_by_reference (type);
698}
699
700/* Return zero; by default, types are passed by value at the language
701 level. The target ABI may pass or return some structs by reference
702 independent of this. */
703int
704default_pass_by_reference (struct type *type)
705{
706 return 0;
707}
708
9f0a5303
JB
709/* Return the default string containing the list of characters
710 delimiting words. This is a reasonable default value that
711 most languages should be able to use. */
712
713char *
714default_word_break_characters (void)
715{
716 return " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
717}
f636b87d 718
e79af960
JB
719/* Print the index of array elements using the C99 syntax. */
720
721void
722default_print_array_index (struct value *index_value, struct ui_file *stream,
79a45b7d 723 const struct value_print_options *options)
e79af960
JB
724{
725 fprintf_filtered (stream, "[");
79a45b7d 726 LA_VALUE_PRINT (index_value, stream, options);
e79af960
JB
727 fprintf_filtered (stream, "] = ");
728}
729
ae6a3a4c
TJB
730void
731default_get_string (struct value *value, gdb_byte **buffer, int *length,
96c07c5b 732 struct type **char_type, const char **charset)
ae6a3a4c
TJB
733{
734 error (_("Getting a string is unsupported in this language."));
735}
736
c906108c
SS
737/* Define the language that is no language. */
738
739static int
410a0ff2 740unk_lang_parser (struct parser_state *ps)
c906108c
SS
741{
742 return 1;
743}
744
745static void
fba45db2 746unk_lang_error (char *msg)
c906108c 747{
8a3fe4f8 748 error (_("Attempted to parse an expression with unknown language"));
c906108c
SS
749}
750
751static void
6c7a06a3
TT
752unk_lang_emit_char (int c, struct type *type, struct ui_file *stream,
753 int quoter)
c906108c 754{
3e43a32a
MS
755 error (_("internal error - unimplemented "
756 "function unk_lang_emit_char called."));
c906108c
SS
757}
758
759static void
6c7a06a3 760unk_lang_printchar (int c, struct type *type, struct ui_file *stream)
c906108c 761{
3e43a32a
MS
762 error (_("internal error - unimplemented "
763 "function unk_lang_printchar called."));
c906108c
SS
764}
765
766static void
6c7a06a3
TT
767unk_lang_printstr (struct ui_file *stream, struct type *type,
768 const gdb_byte *string, unsigned int length,
be759fcf 769 const char *encoding, int force_ellipses,
79a45b7d 770 const struct value_print_options *options)
c906108c 771{
3e43a32a
MS
772 error (_("internal error - unimplemented "
773 "function unk_lang_printstr called."));
c906108c
SS
774}
775
c906108c 776static void
25b524e8 777unk_lang_print_type (struct type *type, const char *varstring,
79d43c61
TT
778 struct ui_file *stream, int show, int level,
779 const struct type_print_options *flags)
c906108c 780{
3e43a32a
MS
781 error (_("internal error - unimplemented "
782 "function unk_lang_print_type called."));
c906108c
SS
783}
784
d3eab38a 785static void
fc1a4b47 786unk_lang_val_print (struct type *type, const gdb_byte *valaddr,
a2bd3dcd 787 int embedded_offset, CORE_ADDR address,
79a45b7d 788 struct ui_file *stream, int recurse,
0e03807e 789 const struct value *val,
79a45b7d 790 const struct value_print_options *options)
c906108c 791{
3e43a32a
MS
792 error (_("internal error - unimplemented "
793 "function unk_lang_val_print called."));
c906108c
SS
794}
795
8e069a98 796static void
79a45b7d
TT
797unk_lang_value_print (struct value *val, struct ui_file *stream,
798 const struct value_print_options *options)
c906108c 799{
3e43a32a
MS
800 error (_("internal error - unimplemented "
801 "function unk_lang_value_print called."));
c906108c
SS
802}
803
52f729a7 804static CORE_ADDR unk_lang_trampoline (struct frame_info *frame, CORE_ADDR pc)
f636b87d
AF
805{
806 return 0;
807}
808
9a3d7dfd
AF
809/* Unknown languages just use the cplus demangler. */
810static char *unk_lang_demangle (const char *mangled, int options)
811{
8de20a37 812 return gdb_demangle (mangled, options);
9a3d7dfd
AF
813}
814
31c27f77
JJ
815static char *unk_lang_class_name (const char *mangled)
816{
817 return NULL;
818}
9a3d7dfd 819
c5aa993b
JM
820static const struct op_print unk_op_print_tab[] =
821{
822 {NULL, OP_NULL, PREC_NULL, 0}
c906108c
SS
823};
824
f290d38e
AC
825static void
826unknown_language_arch_info (struct gdbarch *gdbarch,
827 struct language_arch_info *lai)
828{
829 lai->string_char_type = builtin_type (gdbarch)->builtin_char;
fbb06eb1 830 lai->bool_type_default = builtin_type (gdbarch)->builtin_int;
5a44ea29 831 lai->primitive_type_vector = GDBARCH_OBSTACK_CALLOC (gdbarch, 1,
f290d38e
AC
832 struct type *);
833}
834
c5aa993b
JM
835const struct language_defn unknown_language_defn =
836{
c906108c 837 "unknown",
6abde28f 838 "Unknown",
c906108c 839 language_unknown,
c906108c 840 range_check_off,
63872f9d 841 case_sensitive_on,
9a044a89
TT
842 array_row_major,
843 macro_expansion_no,
56618e20 844 NULL,
5f9769d1 845 &exp_descriptor_standard,
c906108c
SS
846 unk_lang_parser,
847 unk_lang_error,
e85c3284 848 null_post_parser,
c906108c
SS
849 unk_lang_printchar, /* Print character constant */
850 unk_lang_printstr,
851 unk_lang_emit_char,
c906108c 852 unk_lang_print_type, /* Print a type using appropriate syntax */
5c6ce71d 853 default_print_typedef, /* Print a typedef using appropriate syntax */
c906108c
SS
854 unk_lang_val_print, /* Print a value using appropriate syntax */
855 unk_lang_value_print, /* Print a top-level value */
a5ee536b 856 default_read_var_value, /* la_read_var_value */
f636b87d 857 unk_lang_trampoline, /* Language specific skip_trampoline */
2b2d9e11 858 "this", /* name_of_this */
5f9a71c3 859 basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
b368761e 860 basic_lookup_transparent_type,/* lookup_transparent_type */
9a3d7dfd 861 unk_lang_demangle, /* Language specific symbol demangler */
8b302db8 862 NULL,
3e43a32a
MS
863 unk_lang_class_name, /* Language specific
864 class_name_from_physname */
c906108c
SS
865 unk_op_print_tab, /* expression operators for printing */
866 1, /* c-style arrays */
867 0, /* String lower bound */
6084f43a 868 default_word_break_characters,
41d27058 869 default_make_symbol_completion_list,
f290d38e 870 unknown_language_arch_info, /* la_language_arch_info. */
e79af960 871 default_print_array_index,
41f1b697 872 default_pass_by_reference,
ae6a3a4c 873 default_get_string,
1a119f36 874 NULL, /* la_get_symbol_name_cmp */
f8eba3c6 875 iterate_over_symbols,
a53b64ea 876 &default_varobj_ops,
bb2ec1b3
TT
877 NULL,
878 NULL,
c906108c
SS
879 LANG_MAGIC
880};
881
1777feb0
MS
882/* These two structs define fake entries for the "local" and "auto"
883 options. */
c5aa993b
JM
884const struct language_defn auto_language_defn =
885{
c906108c 886 "auto",
6abde28f 887 "Auto",
c906108c 888 language_auto,
c906108c 889 range_check_off,
63872f9d 890 case_sensitive_on,
9a044a89
TT
891 array_row_major,
892 macro_expansion_no,
56618e20 893 NULL,
5f9769d1 894 &exp_descriptor_standard,
c906108c
SS
895 unk_lang_parser,
896 unk_lang_error,
e85c3284 897 null_post_parser,
c906108c
SS
898 unk_lang_printchar, /* Print character constant */
899 unk_lang_printstr,
900 unk_lang_emit_char,
c906108c 901 unk_lang_print_type, /* Print a type using appropriate syntax */
5c6ce71d 902 default_print_typedef, /* Print a typedef using appropriate syntax */
c906108c
SS
903 unk_lang_val_print, /* Print a value using appropriate syntax */
904 unk_lang_value_print, /* Print a top-level value */
a5ee536b 905 default_read_var_value, /* la_read_var_value */
f636b87d 906 unk_lang_trampoline, /* Language specific skip_trampoline */
2b2d9e11 907 "this", /* name_of_this */
5f9a71c3 908 basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
b368761e 909 basic_lookup_transparent_type,/* lookup_transparent_type */
9a3d7dfd 910 unk_lang_demangle, /* Language specific symbol demangler */
8b302db8 911 NULL,
3e43a32a
MS
912 unk_lang_class_name, /* Language specific
913 class_name_from_physname */
c906108c
SS
914 unk_op_print_tab, /* expression operators for printing */
915 1, /* c-style arrays */
916 0, /* String lower bound */
6084f43a 917 default_word_break_characters,
41d27058 918 default_make_symbol_completion_list,
f290d38e 919 unknown_language_arch_info, /* la_language_arch_info. */
e79af960 920 default_print_array_index,
41f1b697 921 default_pass_by_reference,
ae6a3a4c 922 default_get_string,
1a119f36 923 NULL, /* la_get_symbol_name_cmp */
f8eba3c6 924 iterate_over_symbols,
a53b64ea 925 &default_varobj_ops,
bb2ec1b3
TT
926 NULL,
927 NULL,
c906108c
SS
928 LANG_MAGIC
929};
930
c5aa993b
JM
931const struct language_defn local_language_defn =
932{
c906108c 933 "local",
6abde28f 934 "Local",
c906108c 935 language_auto,
c906108c 936 range_check_off,
63872f9d 937 case_sensitive_on,
7ca2d3a3 938 array_row_major,
9a044a89 939 macro_expansion_no,
56618e20 940 NULL,
5f9769d1 941 &exp_descriptor_standard,
c906108c
SS
942 unk_lang_parser,
943 unk_lang_error,
e85c3284 944 null_post_parser,
c906108c
SS
945 unk_lang_printchar, /* Print character constant */
946 unk_lang_printstr,
947 unk_lang_emit_char,
c906108c 948 unk_lang_print_type, /* Print a type using appropriate syntax */
5c6ce71d 949 default_print_typedef, /* Print a typedef using appropriate syntax */
c906108c
SS
950 unk_lang_val_print, /* Print a value using appropriate syntax */
951 unk_lang_value_print, /* Print a top-level value */
a5ee536b 952 default_read_var_value, /* la_read_var_value */
f636b87d 953 unk_lang_trampoline, /* Language specific skip_trampoline */
2b2d9e11 954 "this", /* name_of_this */
5f9a71c3 955 basic_lookup_symbol_nonlocal, /* lookup_symbol_nonlocal */
b368761e 956 basic_lookup_transparent_type,/* lookup_transparent_type */
9a3d7dfd 957 unk_lang_demangle, /* Language specific symbol demangler */
8b302db8 958 NULL,
3e43a32a
MS
959 unk_lang_class_name, /* Language specific
960 class_name_from_physname */
c906108c
SS
961 unk_op_print_tab, /* expression operators for printing */
962 1, /* c-style arrays */
963 0, /* String lower bound */
6084f43a 964 default_word_break_characters,
41d27058 965 default_make_symbol_completion_list,
f290d38e 966 unknown_language_arch_info, /* la_language_arch_info. */
e79af960 967 default_print_array_index,
41f1b697 968 default_pass_by_reference,
ae6a3a4c 969 default_get_string,
1a119f36 970 NULL, /* la_get_symbol_name_cmp */
f8eba3c6 971 iterate_over_symbols,
a53b64ea 972 &default_varobj_ops,
bb2ec1b3
TT
973 NULL,
974 NULL,
c906108c
SS
975 LANG_MAGIC
976};
977\f
f290d38e
AC
978/* Per-architecture language information. */
979
980static struct gdbarch_data *language_gdbarch_data;
981
982struct language_gdbarch
983{
984 /* A vector of per-language per-architecture info. Indexed by "enum
985 language". */
986 struct language_arch_info arch_info[nr_languages];
987};
988
989static void *
990language_gdbarch_post_init (struct gdbarch *gdbarch)
991{
992 struct language_gdbarch *l;
993 int i;
994
995 l = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct language_gdbarch);
1285b746 996 for (i = 0; i < languages_size; i++)
f290d38e
AC
997 {
998 if (languages[i] != NULL
999 && languages[i]->la_language_arch_info != NULL)
1000 languages[i]->la_language_arch_info
1001 (gdbarch, l->arch_info + languages[i]->la_language);
1002 }
1003 return l;
1004}
1005
1006struct type *
1007language_string_char_type (const struct language_defn *la,
1008 struct gdbarch *gdbarch)
1009{
9a3c8263
SM
1010 struct language_gdbarch *ld
1011 = (struct language_gdbarch *) gdbarch_data (gdbarch, language_gdbarch_data);
e0881a8e 1012
aba2dd37 1013 return ld->arch_info[la->la_language].string_char_type;
f290d38e
AC
1014}
1015
fbb06eb1
UW
1016struct type *
1017language_bool_type (const struct language_defn *la,
1018 struct gdbarch *gdbarch)
1019{
9a3c8263
SM
1020 struct language_gdbarch *ld
1021 = (struct language_gdbarch *) gdbarch_data (gdbarch, language_gdbarch_data);
fbb06eb1
UW
1022
1023 if (ld->arch_info[la->la_language].bool_type_symbol)
1024 {
1025 struct symbol *sym;
e0881a8e 1026
fbb06eb1 1027 sym = lookup_symbol (ld->arch_info[la->la_language].bool_type_symbol,
d12307c1 1028 NULL, VAR_DOMAIN, NULL).symbol;
fbb06eb1
UW
1029 if (sym)
1030 {
1031 struct type *type = SYMBOL_TYPE (sym);
e0881a8e 1032
fbb06eb1
UW
1033 if (type && TYPE_CODE (type) == TYPE_CODE_BOOL)
1034 return type;
1035 }
1036 }
1037
1038 return ld->arch_info[la->la_language].bool_type_default;
1039}
1040
1994afbf
DE
1041/* Helper function for primitive type lookup. */
1042
1043static struct type **
1044language_lookup_primitive_type_1 (const struct language_arch_info *lai,
1045 const char *name)
1046{
1047 struct type **p;
1048
1049 for (p = lai->primitive_type_vector; (*p) != NULL; p++)
1050 {
1051 if (strcmp (TYPE_NAME (*p), name) == 0)
1052 return p;
1053 }
1054 return NULL;
1055}
1056
1057/* See language.h. */
1058
f290d38e 1059struct type *
46b0da17
DE
1060language_lookup_primitive_type (const struct language_defn *la,
1061 struct gdbarch *gdbarch,
1062 const char *name)
f290d38e 1063{
9a3c8263
SM
1064 struct language_gdbarch *ld =
1065 (struct language_gdbarch *) gdbarch_data (gdbarch, language_gdbarch_data);
1994afbf
DE
1066 struct type **typep;
1067
1068 typep = language_lookup_primitive_type_1 (&ld->arch_info[la->la_language],
1069 name);
1070 if (typep == NULL)
1071 return NULL;
1072 return *typep;
1073}
1074
1075/* Helper function for type lookup as a symbol.
1076 Create the symbol corresponding to type TYPE in language LANG. */
1077
1078static struct symbol *
1079language_alloc_type_symbol (enum language lang, struct type *type)
1080{
1081 struct symbol *symbol;
1082 struct gdbarch *gdbarch;
1083
1084 gdb_assert (!TYPE_OBJFILE_OWNED (type));
1085
1086 gdbarch = TYPE_OWNER (type).gdbarch;
1087 symbol = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct symbol);
1088
1089 symbol->ginfo.name = TYPE_NAME (type);
1090 symbol->ginfo.language = lang;
1091 symbol->owner.arch = gdbarch;
1092 SYMBOL_OBJFILE_OWNED (symbol) = 0;
1093 SYMBOL_TYPE (symbol) = type;
1094 SYMBOL_DOMAIN (symbol) = VAR_DOMAIN;
1095 SYMBOL_ACLASS_INDEX (symbol) = LOC_TYPEDEF;
1096
1097 return symbol;
1098}
1099
1100/* Initialize the primitive type symbols of language LD.
1101 The primitive type vector must have already been initialized. */
1102
1103static void
1104language_init_primitive_type_symbols (struct language_arch_info *lai,
1105 const struct language_defn *la,
1106 struct gdbarch *gdbarch)
1107{
1108 int n;
1994afbf
DE
1109
1110 gdb_assert (lai->primitive_type_vector != NULL);
1111
1112 for (n = 0; lai->primitive_type_vector[n] != NULL; ++n)
1113 continue;
1114
1115 lai->primitive_type_symbols
1116 = GDBARCH_OBSTACK_CALLOC (gdbarch, n + 1, struct symbol *);
1117
1118 for (n = 0; lai->primitive_type_vector[n] != NULL; ++n)
1119 {
1120 lai->primitive_type_symbols[n]
1121 = language_alloc_type_symbol (la->la_language,
1122 lai->primitive_type_vector[n]);
1123 }
1124
1125 /* Note: The result of symbol lookup is normally a symbol *and* the block
d12307c1
PMR
1126 it was found in. Builtin types don't live in blocks. We *could* give
1127 them one, but there is no current need so to keep things simple symbol
1128 lookup is extended to allow for BLOCK_FOUND to be NULL. */
1994afbf
DE
1129}
1130
1131/* See language.h. */
1132
1133struct symbol *
1134language_lookup_primitive_type_as_symbol (const struct language_defn *la,
1135 struct gdbarch *gdbarch,
1136 const char *name)
1137{
9a3c8263
SM
1138 struct language_gdbarch *ld
1139 = (struct language_gdbarch *) gdbarch_data (gdbarch, language_gdbarch_data);
1994afbf
DE
1140 struct language_arch_info *lai = &ld->arch_info[la->la_language];
1141 struct type **typep;
1142 struct symbol *sym;
e0881a8e 1143
cc485e62
DE
1144 if (symbol_lookup_debug)
1145 {
1146 fprintf_unfiltered (gdb_stdlog,
1994afbf
DE
1147 "language_lookup_primitive_type_as_symbol"
1148 " (%s, %s, %s)",
cc485e62
DE
1149 la->la_name, host_address_to_string (gdbarch), name);
1150 }
1151
1994afbf
DE
1152 typep = language_lookup_primitive_type_1 (lai, name);
1153 if (typep == NULL)
f290d38e 1154 {
1994afbf
DE
1155 if (symbol_lookup_debug)
1156 fprintf_unfiltered (gdb_stdlog, " = NULL\n");
1157 return NULL;
f290d38e 1158 }
cc485e62 1159
1994afbf
DE
1160 /* The set of symbols is lazily initialized. */
1161 if (lai->primitive_type_symbols == NULL)
1162 language_init_primitive_type_symbols (lai, la, gdbarch);
1163
1164 sym = lai->primitive_type_symbols[typep - lai->primitive_type_vector];
1165
cc485e62 1166 if (symbol_lookup_debug)
1994afbf
DE
1167 fprintf_unfiltered (gdb_stdlog, " = %s\n", host_address_to_string (sym));
1168 return sym;
f290d38e
AC
1169}
1170
1777feb0 1171/* Initialize the language routines. */
c906108c
SS
1172
1173void
fba45db2 1174_initialize_language (void)
c906108c 1175{
40478521 1176 static const char *const type_or_range_names[]
b84aa90a
PA
1177 = { "on", "off", "warn", "auto", NULL };
1178
40478521 1179 static const char *const case_sensitive_names[]
b84aa90a 1180 = { "on", "off", "auto", NULL };
c5aa993b 1181
f290d38e
AC
1182 language_gdbarch_data
1183 = gdbarch_data_register_post_init (language_gdbarch_post_init);
1184
1777feb0 1185 /* GDB commands for language specific stuff. */
c5aa993b 1186
c5aa993b 1187 add_prefix_cmd ("check", no_class, set_check,
1bedd215 1188 _("Set the status of the type/range checker."),
c5aa993b
JM
1189 &setchecklist, "set check ", 0, &setlist);
1190 add_alias_cmd ("c", "check", no_class, 1, &setlist);
1191 add_alias_cmd ("ch", "check", no_class, 1, &setlist);
1192
1193 add_prefix_cmd ("check", no_class, show_check,
1bedd215 1194 _("Show the status of the type/range checker."),
c5aa993b
JM
1195 &showchecklist, "show check ", 0, &showlist);
1196 add_alias_cmd ("c", "check", no_class, 1, &showlist);
1197 add_alias_cmd ("ch", "check", no_class, 1, &showlist);
1198
b84aa90a 1199 add_setshow_enum_cmd ("range", class_support, type_or_range_names,
3e43a32a
MS
1200 &range,
1201 _("Set range checking. (on/warn/off/auto)"),
1202 _("Show range checking. (on/warn/off/auto)"),
1203 NULL, set_range_command,
b84aa90a
PA
1204 show_range_command,
1205 &setchecklist, &showchecklist);
1206
1207 add_setshow_enum_cmd ("case-sensitive", class_support, case_sensitive_names,
1208 &case_sensitive, _("\
4d28ad1e
AC
1209Set case sensitivity in name search. (on/off/auto)"), _("\
1210Show case sensitivity in name search. (on/off/auto)"), _("\
1211For Fortran the default is off; for other languages the default is on."),
b84aa90a
PA
1212 set_case_command,
1213 show_case_command,
1214 &setlist, &showlist);
63872f9d 1215
c5aa993b 1216 add_language (&auto_language_defn);
b84aa90a
PA
1217 add_language (&local_language_defn);
1218 add_language (&unknown_language_defn);
c5aa993b 1219
1b36a34b
JK
1220 language = xstrdup ("auto");
1221 type = xstrdup ("auto");
1222 range = xstrdup ("auto");
1223 case_sensitive = xstrdup ("auto");
63872f9d 1224
1777feb0 1225 /* Have the above take effect. */
63872f9d 1226 set_language (language_auto);
c906108c 1227}
This page took 1.421966 seconds and 4 git commands to generate.