]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/language.h
Code cleanup and refactoring
[thirdparty/binutils-gdb.git] / gdb / language.h
1 /* Source-language-related definitions for GDB.
2
3 Copyright (C) 1991-2020 Free Software Foundation, Inc.
4
5 Contributed by the Department of Computer Science at the State University
6 of New York at Buffalo.
7
8 This file is part of GDB.
9
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
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
14
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.
19
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22
23 #if !defined (LANGUAGE_H)
24 #define LANGUAGE_H 1
25
26 #include "symtab.h"
27 #include "gdbsupport/function-view.h"
28 #include "expression.h"
29
30 /* Forward decls for prototypes. */
31 struct value;
32 struct objfile;
33 struct frame_info;
34 struct ui_file;
35 struct value_print_options;
36 struct type_print_options;
37 struct lang_varobj_ops;
38 struct parser_state;
39 class compile_instance;
40 struct completion_match_for_lcd;
41 class innermost_block_tracker;
42
43 #define MAX_FORTRAN_DIMS 7 /* Maximum number of F77 array dims. */
44
45 /* range_check ==
46 range_check_on: Ranges are checked in GDB expressions, producing errors.
47 range_check_warn: Ranges are checked, producing warnings.
48 range_check_off: Ranges are not checked in GDB expressions. */
49
50 extern enum range_check
51 {
52 range_check_off, range_check_warn, range_check_on
53 }
54 range_check;
55
56 /* array_ordering ==
57 array_row_major: Arrays are in row major order.
58 array_column_major: Arrays are in column major order. */
59
60 extern enum array_ordering
61 {
62 array_row_major, array_column_major
63 }
64 array_ordering;
65
66
67 /* case_sensitivity ==
68 case_sensitive_on: Case sensitivity in name matching is used.
69 case_sensitive_off: Case sensitivity in name matching is not used. */
70
71 extern enum case_sensitivity
72 {
73 case_sensitive_on, case_sensitive_off
74 }
75 case_sensitivity;
76
77
78 /* macro_expansion ==
79 macro_expansion_no: No macro expansion is available.
80 macro_expansion_c: C-like macro expansion is available. */
81
82 enum macro_expansion
83 {
84 macro_expansion_no, macro_expansion_c
85 };
86
87 \f
88 /* Per architecture (OS/ABI) language information. */
89
90 struct language_arch_info
91 {
92 /* Its primitive types. This is a vector ended by a NULL pointer.
93 These types can be specified by name in parsing types in
94 expressions, regardless of whether the program being debugged
95 actually defines such a type. */
96 struct type **primitive_type_vector;
97
98 /* Symbol wrappers around primitive_type_vector, so that the symbol lookup
99 machinery can return them. */
100 struct symbol **primitive_type_symbols;
101
102 /* Type of elements of strings. */
103 struct type *string_char_type;
104
105 /* Symbol name of type to use as boolean type, if defined. */
106 const char *bool_type_symbol;
107 /* Otherwise, this is the default boolean builtin type. */
108 struct type *bool_type_default;
109 };
110
111 /* In a language (particularly C++) a function argument of an aggregate
112 type (i.e. class/struct/union) may be implicitly passed by reference
113 even though it is declared a call-by-value argument in the source.
114 The struct below puts together necessary information for GDB to be
115 able to detect and carry out pass-by-reference semantics for a
116 particular type. This type is referred as T in the inlined comments
117 below.
118
119 The default values of the fields are chosen to give correct semantics
120 for primitive types and for simple aggregate types, such as
121
122 class T {
123 int x;
124 }; */
125
126 struct language_pass_by_ref_info
127 {
128 /* True if an argument of type T can be passed to a function by value
129 (i.e. not through an implicit reference). False, otherwise. */
130 bool trivially_copyable = true;
131
132 /* True if a copy of a value of type T can be initialized by
133 memcpy'ing the value bit-by-bit. False, otherwise.
134 E.g. If T has a user-defined copy ctor, this should be false. */
135 bool trivially_copy_constructible = true;
136
137 /* True if a value of type T can be destructed simply by reclaiming
138 the memory area occupied by the value. False, otherwise.
139 E.g. If T has a user-defined destructor, this should be false. */
140 bool trivially_destructible = true;
141
142 /* True if it is allowed to create a copy of a value of type T.
143 False, otherwise.
144 E.g. If T has a deleted copy ctor, this should be false. */
145 bool copy_constructible = true;
146
147 /* True if a value of type T can be destructed. False, otherwise.
148 E.g. If T has a deleted destructor, this should be false. */
149 bool destructible = true;
150 };
151
152 /* Splitting strings into words. */
153 extern const char *default_word_break_characters (void);
154
155 /* Base class from which all other language classes derive. */
156
157 struct language_defn
158 {
159 language_defn (enum language lang)
160 : la_language (lang)
161 {
162 /* We should only ever create one instance of each language. */
163 gdb_assert (languages[lang] == nullptr);
164 languages[lang] = this;
165 }
166
167 /* Which language this is. */
168
169 const enum language la_language;
170
171 /* Name of the language. */
172
173 virtual const char *name () const = 0;
174
175 /* Natural or official name of the language. */
176
177 virtual const char *natural_name () const = 0;
178
179 /* Return a vector of file extensions for this language. The extension
180 must include the ".", like ".c". If this language doesn't need to
181 provide any filename extensions, this may be an empty vector (which is
182 the default). */
183
184 virtual const std::vector<const char *> &filename_extensions () const
185 {
186 static const std::vector<const char *> no_extensions;
187 return no_extensions;
188 }
189
190 /* Print the index of an element of an array. This default
191 implementation prints using C99 syntax. */
192
193 virtual void print_array_index (struct type *index_type,
194 LONGEST index_value,
195 struct ui_file *stream,
196 const value_print_options *options) const;
197
198 /* Given a symbol VAR, the corresponding block VAR_BLOCK (if any) and a
199 stack frame id FRAME, read the value of the variable and return (pointer
200 to a) struct value containing the value.
201
202 VAR_BLOCK is needed if there's a possibility for VAR to be outside
203 FRAME. This is what happens if FRAME correspond to a nested function
204 and VAR is defined in the outer function. If callers know that VAR is
205 located in FRAME or is global/static, NULL can be passed as VAR_BLOCK.
206
207 Throw an error if the variable cannot be found. */
208
209 virtual struct value *read_var_value (struct symbol *var,
210 const struct block *var_block,
211 struct frame_info *frame) const;
212
213 /* Return information about whether TYPE should be passed
214 (and returned) by reference at the language level. The default
215 implementation returns a LANGUAGE_PASS_BY_REF_INFO initialised in its
216 default state. */
217
218 virtual struct language_pass_by_ref_info pass_by_reference_info
219 (struct type *type) const
220 {
221 return {};
222 }
223
224 /* The per-architecture (OS/ABI) language information. */
225
226 virtual void language_arch_info (struct gdbarch *,
227 struct language_arch_info *) const = 0;
228
229 /* Find the definition of the type with the given name. */
230
231 virtual struct type *lookup_transparent_type (const char *name) const
232 {
233 return basic_lookup_transparent_type (name);
234 }
235
236 /* Find all symbols in the current program space matching NAME in
237 DOMAIN, according to this language's rules.
238
239 The search is done in BLOCK only.
240 The caller is responsible for iterating up through superblocks
241 if desired.
242
243 For each one, call CALLBACK with the symbol. If CALLBACK
244 returns false, the iteration ends at that point.
245
246 This field may not be NULL. If the language does not need any
247 special processing here, 'iterate_over_symbols' should be
248 used as the definition. */
249 virtual bool iterate_over_symbols
250 (const struct block *block, const lookup_name_info &name,
251 domain_enum domain,
252 gdb::function_view<symbol_found_callback_ftype> callback) const
253 {
254 return ::iterate_over_symbols (block, name, domain, callback);
255 }
256
257 /* Return a pointer to the function that should be used to match a
258 symbol name against LOOKUP_NAME, according to this language's
259 rules. The matching algorithm depends on LOOKUP_NAME. For
260 example, on Ada, the matching algorithm depends on the symbol
261 name (wild/full/verbatim matching), and on whether we're doing
262 a normal lookup or a completion match lookup.
263
264 As Ada wants to capture symbol matching for all languages in some
265 cases, then this method is a non-overridable interface. Languages
266 should override GET_SYMBOL_NAME_MATCHER_INNER if they need to. */
267
268 symbol_name_matcher_ftype *get_symbol_name_matcher
269 (const lookup_name_info &lookup_name) const;
270
271 /* If this language allows compilation from the gdb command line, then
272 this method will return an instance of struct gcc_context appropriate
273 to the language. If compilation for this language is generally
274 supported, but something goes wrong then an exception is thrown. The
275 returned compiler instance is owned by its caller and must be
276 deallocated by the caller. If compilation is not supported for this
277 language then this method returns NULL. */
278
279 virtual compile_instance *get_compile_instance () const
280 {
281 return nullptr;
282 }
283
284 /* This method must be overridden if 'get_compile_instance' is
285 overridden.
286
287 This takes the user-supplied text and returns a new bit of code
288 to compile.
289
290 INST is the compiler instance being used.
291 INPUT is the user's input text.
292 GDBARCH is the architecture to use.
293 EXPR_BLOCK is the block in which the expression is being
294 parsed.
295 EXPR_PC is the PC at which the expression is being parsed. */
296
297 virtual std::string compute_program (compile_instance *inst,
298 const char *input,
299 struct gdbarch *gdbarch,
300 const struct block *expr_block,
301 CORE_ADDR expr_pc) const
302 {
303 gdb_assert_not_reached ("language_defn::compute_program");
304 }
305
306 /* Hash the given symbol search name. */
307 virtual unsigned int search_name_hash (const char *name) const;
308
309 /* Demangle a symbol according to this language's rules. Unlike
310 la_demangle, this does not take any options.
311
312 *DEMANGLED will be set by this function.
313
314 If this function returns false, then *DEMANGLED must always be set
315 to NULL.
316
317 If this function returns true, the implementation may set this to
318 a xmalloc'd string holding the demangled form. However, it is
319 not required to. The string, if any, is owned by the caller.
320
321 The resulting string should be of the form that will be
322 installed into a symbol. */
323 virtual bool sniff_from_mangled_name (const char *mangled,
324 char **demangled) const
325 {
326 *demangled = nullptr;
327 return false;
328 }
329
330 /* Return demangled language symbol version of MANGLED, or NULL. */
331 virtual char *demangle (const char *mangled, int options) const
332 {
333 return nullptr;
334 }
335
336 /* Print a type using syntax appropriate for this language. */
337
338 virtual void print_type (struct type *, const char *, struct ui_file *, int,
339 int, const struct type_print_options *) const = 0;
340
341 /* PC is possibly an unknown languages trampoline.
342 If that PC falls in a trampoline belonging to this language, return
343 the address of the first pc in the real function, or 0 if it isn't a
344 language tramp for this language. */
345 virtual CORE_ADDR skip_trampoline (struct frame_info *fi, CORE_ADDR pc) const
346 {
347 return (CORE_ADDR) 0;
348 }
349
350 /* Return class name of a mangled method name or NULL. */
351 virtual char *class_name_from_physname (const char *physname) const
352 {
353 return nullptr;
354 }
355
356 /* The list of characters forming word boundaries. */
357 virtual const char *word_break_characters (void) const
358 {
359 return default_word_break_characters ();
360 }
361
362 /* Add to the completion tracker all symbols which are possible
363 completions for TEXT. WORD is the entire command on which the
364 completion is being made. If CODE is TYPE_CODE_UNDEF, then all
365 symbols should be examined; otherwise, only STRUCT_DOMAIN symbols
366 whose type has a code of CODE should be matched. */
367
368 virtual void collect_symbol_completion_matches
369 (completion_tracker &tracker,
370 complete_symbol_mode mode,
371 symbol_name_match_type name_match_type,
372 const char *text,
373 const char *word,
374 enum type_code code) const
375 {
376 return default_collect_symbol_completion_matches_break_on
377 (tracker, mode, name_match_type, text, word, "", code);
378 }
379
380 /* This is a function that lookup_symbol will call when it gets to
381 the part of symbol lookup where C looks up static and global
382 variables. This default implements the basic C lookup rules. */
383
384 virtual struct block_symbol lookup_symbol_nonlocal
385 (const char *name,
386 const struct block *block,
387 const domain_enum domain) const;
388
389 /* Return an expression that can be used for a location
390 watchpoint. TYPE is a pointer type that points to the memory
391 to watch, and ADDR is the address of the watched memory. */
392 virtual gdb::unique_xmalloc_ptr<char> watch_location_expression
393 (struct type *type, CORE_ADDR addr) const;
394
395 /* List of all known languages. */
396 static const struct language_defn *languages[nr_languages];
397
398 /* Print a top-level value using syntax appropriate for this language. */
399 virtual void value_print (struct value *val, struct ui_file *stream,
400 const struct value_print_options *options) const;
401
402 /* Print a value using syntax appropriate for this language. RECURSE is
403 the recursion depth. It is zero-based. */
404 virtual void value_print_inner
405 (struct value *val, struct ui_file *stream, int recurse,
406 const struct value_print_options *options) const;
407
408 /* Parser function. */
409
410 virtual int parser (struct parser_state *ps) const;
411
412 /* Given an expression *EXPP created by prefixifying the result of
413 la_parser, perform any remaining processing necessary to complete its
414 translation. *EXPP may change; la_post_parser is responsible for
415 releasing its previous contents, if necessary. If VOID_CONTEXT_P,
416 then no value is expected from the expression. If COMPLETING is
417 non-zero, then the expression has been parsed for completion, not
418 evaluation. */
419
420 virtual void post_parser (expression_up *expp, int void_context_p,
421 int completing,
422 innermost_block_tracker *tracker) const
423 {
424 /* By default the post-parser does nothing. */
425 }
426
427 /* Print the character CH (of type CHTYPE) on STREAM as part of the
428 contents of a literal string whose delimiter is QUOTER. */
429
430 virtual void emitchar (int ch, struct type *chtype,
431 struct ui_file *stream, int quoter) const;
432
433 virtual void printchar (int ch, struct type *chtype,
434 struct ui_file * stream) const;
435
436 /* Print the character string STRING, printing at most LENGTH characters.
437 Printing stops early if the number hits print_max; repeat counts
438 are printed as appropriate. Print ellipses at the end if we
439 had to stop before printing LENGTH characters, or if FORCE_ELLIPSES. */
440
441 virtual void printstr (struct ui_file *stream, struct type *elttype,
442 const gdb_byte *string, unsigned int length,
443 const char *encoding, int force_ellipses,
444 const struct value_print_options *options) const;
445
446
447 /* Print a typedef using syntax appropriate for this language.
448 TYPE is the underlying type. NEW_SYMBOL is the symbol naming
449 the type. STREAM is the output stream on which to print. */
450
451 virtual void print_typedef (struct type *type, struct symbol *new_symbol,
452 struct ui_file *stream) const;
453
454 /* Return true if TYPE is a string type. */
455 virtual bool is_string_type_p (struct type *type) const;
456
457 /* Return a string that is used by the 'set print max-depth' setting.
458 When GDB replaces a struct or union (during value printing) that is
459 "too deep" this string is displayed instead. The default value here
460 suits most languages. If overriding then the string here should
461 ideally be similar in style to the default; an opener, three '.', and
462 a closer. */
463
464 virtual const char *struct_too_deep_ellipsis () const
465 { return "{...}"; }
466
467 /* If this returns non-NULL then the string returned specifies the name
468 of the implicit local variable that refers to the current object
469 instance. Return NULL (the default) for languages that have no name
470 for the current object instance. */
471
472 virtual const char *name_of_this () const
473 { return nullptr; }
474
475 /* Return false if the language has first-class arrays. Return true if
476 there are no array values, and array objects decay to pointers, as in
477 C. The default is true as currently most supported languages behave
478 in this manor. */
479
480 virtual bool c_style_arrays_p () const
481 { return true; }
482
483 /* Return the index to use for extracting the first element of a string,
484 or as the lower bound when creating a new string. The default of
485 choosing 0 or 1 based on C_STYLE_ARRAYS_P works for all currently
486 supported languages except Modula-2. */
487
488 virtual char string_lower_bound () const
489 { return c_style_arrays_p () ? 0 : 1; }
490
491 /* Returns true if the symbols names should be stored in GDB's data
492 structures for minimal/partial/full symbols using their linkage (aka
493 mangled) form; false if the symbol names should be demangled first.
494
495 Most languages implement symbol lookup by comparing the demangled
496 names, in which case it is advantageous to store that information
497 already demangled, and so would return false, which is the default.
498
499 On the other hand, some languages have opted for doing symbol lookups
500 by comparing mangled names instead, for reasons usually specific to
501 the language. Those languages should override this function and
502 return true.
503
504 And finally, other languages such as C or Asm do not have the concept
505 of mangled vs demangled name, so those languages should also override
506 this function and return true, to prevent any accidental demangling
507 through an unrelated language's demangler. */
508
509 virtual bool store_sym_names_in_linkage_form_p () const
510 { return false; }
511
512 /* Default range checking preference. The return value from this
513 function provides the automatic setting for 'set check range'. As a
514 consequence a user is free to override this setting if they want. */
515
516 virtual bool range_checking_on_by_default () const
517 { return false; }
518
519 /* Is this language case sensitive? The return value from this function
520 provides the automativ setting for 'set case-sensitive', as a
521 consequence, a user is free to override this setting if they want. */
522
523 virtual enum case_sensitivity case_sensitivity () const
524 { return case_sensitive_on; }
525
526
527 /* Multi-dimensional array ordering. */
528
529 virtual enum array_ordering array_ordering () const
530 { return array_row_major; }
531
532 /* Style of macro expansion, if any, supported by this language. The
533 default is no macro expansion. */
534
535 virtual enum macro_expansion macro_expansion () const
536 { return macro_expansion_no; }
537
538 /* Return a structure containing various operations on varobj specific
539 for this language. */
540
541 virtual const struct lang_varobj_ops *varobj_ops () const;
542
543 /* Definitions related to expression printing, prefixifying, and
544 dumping. */
545
546 virtual const struct exp_descriptor *expression_ops () const;
547
548 /* Table for printing expressions. */
549
550 virtual const struct op_print *opcode_print_table () const = 0;
551
552 protected:
553
554 /* This is the overridable part of the GET_SYMBOL_NAME_MATCHER method.
555 See that method for a description of the arguments. */
556
557 virtual symbol_name_matcher_ftype *get_symbol_name_matcher_inner
558 (const lookup_name_info &lookup_name) const;
559 };
560
561 /* Pointer to the language_defn for our current language. This pointer
562 always points to *some* valid struct; it can be used without checking
563 it for validity.
564
565 The current language affects expression parsing and evaluation
566 (FIXME: it might be cleaner to make the evaluation-related stuff
567 separate exp_opcodes for each different set of semantics. We
568 should at least think this through more clearly with respect to
569 what happens if the language is changed between parsing and
570 evaluation) and printing of things like types and arrays. It does
571 *not* affect symbol-reading-- each source file in a symbol-file has
572 its own language and we should keep track of that regardless of the
573 language when symbols are read. If we want some manual setting for
574 the language of symbol files (e.g. detecting when ".c" files are
575 C++), it should be a separate setting from the current_language. */
576
577 extern const struct language_defn *current_language;
578
579 /* Pointer to the language_defn expected by the user, e.g. the language
580 of main(), or the language we last mentioned in a message, or C. */
581
582 extern const struct language_defn *expected_language;
583
584 /* Warning issued when current_language and the language of the current
585 frame do not match. */
586
587 extern const char lang_frame_mismatch_warn[];
588
589 /* language_mode ==
590 language_mode_auto: current_language automatically set upon selection
591 of scope (e.g. stack frame)
592 language_mode_manual: current_language set only by user. */
593
594 extern enum language_mode
595 {
596 language_mode_auto, language_mode_manual
597 }
598 language_mode;
599
600 struct type *language_bool_type (const struct language_defn *l,
601 struct gdbarch *gdbarch);
602
603 struct type *language_string_char_type (const struct language_defn *l,
604 struct gdbarch *gdbarch);
605
606 /* Look up type NAME in language L, and return its definition for architecture
607 GDBARCH. Returns NULL if not found. */
608
609 struct type *language_lookup_primitive_type (const struct language_defn *l,
610 struct gdbarch *gdbarch,
611 const char *name);
612
613 /* Wrapper around language_lookup_primitive_type to return the
614 corresponding symbol. */
615
616 struct symbol *
617 language_lookup_primitive_type_as_symbol (const struct language_defn *l,
618 struct gdbarch *gdbarch,
619 const char *name);
620
621 \f
622 /* These macros define the behaviour of the expression
623 evaluator. */
624
625 /* Should we range check values against the domain of their type? */
626 #define RANGE_CHECK (range_check != range_check_off)
627
628 /* "cast" really means conversion. */
629 /* FIXME -- should be a setting in language_defn. */
630 #define CAST_IS_CONVERSION(LANG) ((LANG)->la_language == language_c || \
631 (LANG)->la_language == language_cplus || \
632 (LANG)->la_language == language_objc)
633
634 extern void language_info (int);
635
636 extern enum language set_language (enum language);
637 \f
638
639 /* This page contains functions that return things that are
640 specific to languages. Each of these functions is based on
641 the current setting of working_lang, which the user sets
642 with the "set language" command. */
643
644 #define LA_PRINT_TYPE(type,varstring,stream,show,level,flags) \
645 (current_language->print_type(type,varstring,stream,show,level,flags))
646
647 #define LA_PRINT_TYPEDEF(type,new_symbol,stream) \
648 (current_language->print_typedef (type,new_symbol,stream))
649
650 #define LA_VALUE_PRINT(val,stream,options) \
651 (current_language->value_print (val,stream,options))
652
653 #define LA_PRINT_CHAR(ch, type, stream) \
654 (current_language->printchar (ch, type, stream))
655 #define LA_PRINT_STRING(stream, elttype, string, length, encoding, force_ellipses, options) \
656 (current_language->printstr (stream, elttype, string, length, \
657 encoding, force_ellipses,options))
658 #define LA_EMIT_CHAR(ch, type, stream, quoter) \
659 (current_language->emitchar (ch, type, stream, quoter))
660
661 #define LA_PRINT_ARRAY_INDEX(index_type, index_value, stream, options) \
662 (current_language->print_array_index(index_type, index_value, stream, \
663 options))
664
665 #define LA_ITERATE_OVER_SYMBOLS(BLOCK, NAME, DOMAIN, CALLBACK) \
666 (current_language->iterate_over_symbols (BLOCK, NAME, DOMAIN, CALLBACK))
667
668 /* Test a character to decide whether it can be printed in literal form
669 or needs to be printed in another representation. For example,
670 in C the literal form of the character with octal value 141 is 'a'
671 and the "other representation" is '\141'. The "other representation"
672 is program language dependent. */
673
674 #define PRINT_LITERAL_FORM(c) \
675 ((c) >= 0x20 \
676 && ((c) < 0x7F || (c) >= 0xA0) \
677 && (!sevenbit_strings || (c) < 0x80))
678
679 /* Type predicates */
680
681 extern int pointer_type (struct type *);
682
683 /* Error messages */
684
685 extern void range_error (const char *, ...) ATTRIBUTE_PRINTF (1, 2);
686
687 /* Data: Does this value represent "truth" to the current language? */
688
689 extern int value_true (struct value *);
690
691 /* Misc: The string representing a particular enum language. */
692
693 extern enum language language_enum (const char *str);
694
695 extern const struct language_defn *language_def (enum language);
696
697 extern const char *language_str (enum language);
698
699 /* Check for a language-specific trampoline. */
700
701 extern CORE_ADDR skip_language_trampoline (struct frame_info *, CORE_ADDR pc);
702
703 /* Return demangled language symbol, or NULL. */
704 extern char *language_demangle (const struct language_defn *current_language,
705 const char *mangled, int options);
706
707 /* Return information about whether TYPE should be passed
708 (and returned) by reference at the language level. */
709 struct language_pass_by_ref_info language_pass_by_reference (struct type *type);
710
711 void c_get_string (struct value *value,
712 gdb::unique_xmalloc_ptr<gdb_byte> *buffer,
713 int *length, struct type **char_type,
714 const char **charset);
715
716 /* Get LANG's symbol_name_matcher method for LOOKUP_NAME. Returns
717 default_symbol_name_matcher if not set. LANG is used as a hint;
718 the function may ignore it depending on the current language and
719 LOOKUP_NAME. Specifically, if the current language is Ada, this
720 may return an Ada matcher regardless of LANG. */
721 symbol_name_matcher_ftype *get_symbol_name_matcher
722 (const language_defn *lang, const lookup_name_info &lookup_name);
723
724 /* Save the current language and restore it upon destruction. */
725
726 class scoped_restore_current_language
727 {
728 public:
729
730 explicit scoped_restore_current_language ()
731 : m_lang (current_language->la_language)
732 {
733 }
734
735 ~scoped_restore_current_language ()
736 {
737 set_language (m_lang);
738 }
739
740 scoped_restore_current_language (const scoped_restore_current_language &)
741 = delete;
742 scoped_restore_current_language &operator=
743 (const scoped_restore_current_language &) = delete;
744
745 private:
746
747 enum language m_lang;
748 };
749
750 /* If language_mode is language_mode_auto,
751 then switch current language to the language of SYM
752 and restore current language upon destruction.
753
754 Else do nothing. */
755
756 class scoped_switch_to_sym_language_if_auto
757 {
758 public:
759
760 explicit scoped_switch_to_sym_language_if_auto (const struct symbol *sym)
761 {
762 if (language_mode == language_mode_auto)
763 {
764 m_lang = current_language->la_language;
765 m_switched = true;
766 set_language (sym->language ());
767 }
768 else
769 {
770 m_switched = false;
771 /* Assign to m_lang to silence a GCC warning. See
772 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80635. */
773 m_lang = language_unknown;
774 }
775 }
776
777 ~scoped_switch_to_sym_language_if_auto ()
778 {
779 if (m_switched)
780 set_language (m_lang);
781 }
782
783 DISABLE_COPY_AND_ASSIGN (scoped_switch_to_sym_language_if_auto);
784
785 private:
786 bool m_switched;
787 enum language m_lang;
788 };
789
790 #endif /* defined (LANGUAGE_H) */