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