gdb: Improve documentation comment on language_defn::print_type
[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_symbol (const char *mangled, int options) const
332 {
333 return nullptr;
334 }
335
336 /* Print TYPE to STREAM using syntax appropriate for this language.
337 LEVEL is the depth to indent lines by. VARSTRING, if not NULL or the
338 empty string, is the name of a variable and TYPE should be printed in
339 the form of a declaration of a variable named VARSTRING. */
340
341 virtual void print_type (struct type *type, const char *varstring,
342 struct ui_file *stream, int show, int level,
343 const struct type_print_options *flags) const = 0;
344
345 /* PC is possibly an unknown languages trampoline.
346 If that PC falls in a trampoline belonging to this language, return
347 the address of the first pc in the real function, or 0 if it isn't a
348 language tramp for this language. */
349 virtual CORE_ADDR skip_trampoline (struct frame_info *fi, CORE_ADDR pc) const
350 {
351 return (CORE_ADDR) 0;
352 }
353
354 /* Return class name of a mangled method name or NULL. */
355 virtual char *class_name_from_physname (const char *physname) const
356 {
357 return nullptr;
358 }
359
360 /* The list of characters forming word boundaries. */
361 virtual const char *word_break_characters (void) const
362 {
363 return default_word_break_characters ();
364 }
365
366 /* Add to the completion tracker all symbols which are possible
367 completions for TEXT. WORD is the entire command on which the
368 completion is being made. If CODE is TYPE_CODE_UNDEF, then all
369 symbols should be examined; otherwise, only STRUCT_DOMAIN symbols
370 whose type has a code of CODE should be matched. */
371
372 virtual void collect_symbol_completion_matches
373 (completion_tracker &tracker,
374 complete_symbol_mode mode,
375 symbol_name_match_type name_match_type,
376 const char *text,
377 const char *word,
378 enum type_code code) const
379 {
380 return default_collect_symbol_completion_matches_break_on
381 (tracker, mode, name_match_type, text, word, "", code);
382 }
383
384 /* This is a function that lookup_symbol will call when it gets to
385 the part of symbol lookup where C looks up static and global
386 variables. This default implements the basic C lookup rules. */
387
388 virtual struct block_symbol lookup_symbol_nonlocal
389 (const char *name,
390 const struct block *block,
391 const domain_enum domain) const;
392
393 /* Return an expression that can be used for a location
394 watchpoint. TYPE is a pointer type that points to the memory
395 to watch, and ADDR is the address of the watched memory. */
396 virtual gdb::unique_xmalloc_ptr<char> watch_location_expression
397 (struct type *type, CORE_ADDR addr) const;
398
399 /* List of all known languages. */
400 static const struct language_defn *languages[nr_languages];
401
402 /* Print a top-level value using syntax appropriate for this language. */
403 virtual void value_print (struct value *val, struct ui_file *stream,
404 const struct value_print_options *options) const;
405
406 /* Print a value using syntax appropriate for this language. RECURSE is
407 the recursion depth. It is zero-based. */
408 virtual void value_print_inner
409 (struct value *val, struct ui_file *stream, int recurse,
410 const struct value_print_options *options) const;
411
412 /* Parser function. */
413
414 virtual int parser (struct parser_state *ps) const;
415
416 /* Given an expression *EXPP created by prefixifying the result of
417 la_parser, perform any remaining processing necessary to complete its
418 translation. *EXPP may change; la_post_parser is responsible for
419 releasing its previous contents, if necessary. If VOID_CONTEXT_P,
420 then no value is expected from the expression. If COMPLETING is
421 non-zero, then the expression has been parsed for completion, not
422 evaluation. */
423
424 virtual void post_parser (expression_up *expp, int void_context_p,
425 int completing,
426 innermost_block_tracker *tracker) const
427 {
428 /* By default the post-parser does nothing. */
429 }
430
431 /* Print the character CH (of type CHTYPE) on STREAM as part of the
432 contents of a literal string whose delimiter is QUOTER. */
433
434 virtual void emitchar (int ch, struct type *chtype,
435 struct ui_file *stream, int quoter) const;
436
437 virtual void printchar (int ch, struct type *chtype,
438 struct ui_file * stream) const;
439
440 /* Print the character string STRING, printing at most LENGTH characters.
441 Printing stops early if the number hits print_max; repeat counts
442 are printed as appropriate. Print ellipses at the end if we
443 had to stop before printing LENGTH characters, or if FORCE_ELLIPSES. */
444
445 virtual void printstr (struct ui_file *stream, struct type *elttype,
446 const gdb_byte *string, unsigned int length,
447 const char *encoding, int force_ellipses,
448 const struct value_print_options *options) const;
449
450
451 /* Print a typedef using syntax appropriate for this language.
452 TYPE is the underlying type. NEW_SYMBOL is the symbol naming
453 the type. STREAM is the output stream on which to print. */
454
455 virtual void print_typedef (struct type *type, struct symbol *new_symbol,
456 struct ui_file *stream) const;
457
458 /* Return true if TYPE is a string type. */
459 virtual bool is_string_type_p (struct type *type) const;
460
461 /* Return a string that is used by the 'set print max-depth' setting.
462 When GDB replaces a struct or union (during value printing) that is
463 "too deep" this string is displayed instead. The default value here
464 suits most languages. If overriding then the string here should
465 ideally be similar in style to the default; an opener, three '.', and
466 a closer. */
467
468 virtual const char *struct_too_deep_ellipsis () const
469 { return "{...}"; }
470
471 /* If this returns non-NULL then the string returned specifies the name
472 of the implicit local variable that refers to the current object
473 instance. Return NULL (the default) for languages that have no name
474 for the current object instance. */
475
476 virtual const char *name_of_this () const
477 { return nullptr; }
478
479 /* Return false if the language has first-class arrays. Return true if
480 there are no array values, and array objects decay to pointers, as in
481 C. The default is true as currently most supported languages behave
482 in this manor. */
483
484 virtual bool c_style_arrays_p () const
485 { return true; }
486
487 /* Return the index to use for extracting the first element of a string,
488 or as the lower bound when creating a new string. The default of
489 choosing 0 or 1 based on C_STYLE_ARRAYS_P works for all currently
490 supported languages except Modula-2. */
491
492 virtual char string_lower_bound () const
493 { return c_style_arrays_p () ? 0 : 1; }
494
495 /* Returns true if the symbols names should be stored in GDB's data
496 structures for minimal/partial/full symbols using their linkage (aka
497 mangled) form; false if the symbol names should be demangled first.
498
499 Most languages implement symbol lookup by comparing the demangled
500 names, in which case it is advantageous to store that information
501 already demangled, and so would return false, which is the default.
502
503 On the other hand, some languages have opted for doing symbol lookups
504 by comparing mangled names instead, for reasons usually specific to
505 the language. Those languages should override this function and
506 return true.
507
508 And finally, other languages such as C or Asm do not have the concept
509 of mangled vs demangled name, so those languages should also override
510 this function and return true, to prevent any accidental demangling
511 through an unrelated language's demangler. */
512
513 virtual bool store_sym_names_in_linkage_form_p () const
514 { return false; }
515
516 /* Default range checking preference. The return value from this
517 function provides the automatic setting for 'set check range'. As a
518 consequence a user is free to override this setting if they want. */
519
520 virtual bool range_checking_on_by_default () const
521 { return false; }
522
523 /* Is this language case sensitive? The return value from this function
524 provides the automativ setting for 'set case-sensitive', as a
525 consequence, a user is free to override this setting if they want. */
526
527 virtual enum case_sensitivity case_sensitivity () const
528 { return case_sensitive_on; }
529
530
531 /* Multi-dimensional array ordering. */
532
533 virtual enum array_ordering array_ordering () const
534 { return array_row_major; }
535
536 /* Style of macro expansion, if any, supported by this language. The
537 default is no macro expansion. */
538
539 virtual enum macro_expansion macro_expansion () const
540 { return macro_expansion_no; }
541
542 /* Return a structure containing various operations on varobj specific
543 for this language. */
544
545 virtual const struct lang_varobj_ops *varobj_ops () const;
546
547 /* Definitions related to expression printing, prefixifying, and
548 dumping. */
549
550 virtual const struct exp_descriptor *expression_ops () const;
551
552 /* Table for printing expressions. */
553
554 virtual const struct op_print *opcode_print_table () const = 0;
555
556 protected:
557
558 /* This is the overridable part of the GET_SYMBOL_NAME_MATCHER method.
559 See that method for a description of the arguments. */
560
561 virtual symbol_name_matcher_ftype *get_symbol_name_matcher_inner
562 (const lookup_name_info &lookup_name) const;
563 };
564
565 /* Pointer to the language_defn for our current language. This pointer
566 always points to *some* valid struct; it can be used without checking
567 it for validity.
568
569 The current language affects expression parsing and evaluation
570 (FIXME: it might be cleaner to make the evaluation-related stuff
571 separate exp_opcodes for each different set of semantics. We
572 should at least think this through more clearly with respect to
573 what happens if the language is changed between parsing and
574 evaluation) and printing of things like types and arrays. It does
575 *not* affect symbol-reading-- each source file in a symbol-file has
576 its own language and we should keep track of that regardless of the
577 language when symbols are read. If we want some manual setting for
578 the language of symbol files (e.g. detecting when ".c" files are
579 C++), it should be a separate setting from the current_language. */
580
581 extern const struct language_defn *current_language;
582
583 /* Pointer to the language_defn expected by the user, e.g. the language
584 of main(), or the language we last mentioned in a message, or C. */
585
586 extern const struct language_defn *expected_language;
587
588 /* Warning issued when current_language and the language of the current
589 frame do not match. */
590
591 extern const char lang_frame_mismatch_warn[];
592
593 /* language_mode ==
594 language_mode_auto: current_language automatically set upon selection
595 of scope (e.g. stack frame)
596 language_mode_manual: current_language set only by user. */
597
598 extern enum language_mode
599 {
600 language_mode_auto, language_mode_manual
601 }
602 language_mode;
603
604 struct type *language_bool_type (const struct language_defn *l,
605 struct gdbarch *gdbarch);
606
607 struct type *language_string_char_type (const struct language_defn *l,
608 struct gdbarch *gdbarch);
609
610 /* Look up type NAME in language L, and return its definition for architecture
611 GDBARCH. Returns NULL if not found. */
612
613 struct type *language_lookup_primitive_type (const struct language_defn *l,
614 struct gdbarch *gdbarch,
615 const char *name);
616
617 /* Wrapper around language_lookup_primitive_type to return the
618 corresponding symbol. */
619
620 struct symbol *
621 language_lookup_primitive_type_as_symbol (const struct language_defn *l,
622 struct gdbarch *gdbarch,
623 const char *name);
624
625 \f
626 /* These macros define the behaviour of the expression
627 evaluator. */
628
629 /* Should we range check values against the domain of their type? */
630 #define RANGE_CHECK (range_check != range_check_off)
631
632 /* "cast" really means conversion. */
633 /* FIXME -- should be a setting in language_defn. */
634 #define CAST_IS_CONVERSION(LANG) ((LANG)->la_language == language_c || \
635 (LANG)->la_language == language_cplus || \
636 (LANG)->la_language == language_objc)
637
638 extern void language_info (int);
639
640 extern enum language set_language (enum language);
641 \f
642
643 /* This page contains functions that return things that are
644 specific to languages. Each of these functions is based on
645 the current setting of working_lang, which the user sets
646 with the "set language" command. */
647
648 #define LA_PRINT_TYPE(type,varstring,stream,show,level,flags) \
649 (current_language->print_type(type,varstring,stream,show,level,flags))
650
651 #define LA_PRINT_CHAR(ch, type, stream) \
652 (current_language->printchar (ch, type, stream))
653 #define LA_PRINT_STRING(stream, elttype, string, length, encoding, force_ellipses, options) \
654 (current_language->printstr (stream, elttype, string, length, \
655 encoding, force_ellipses,options))
656 #define LA_EMIT_CHAR(ch, type, stream, quoter) \
657 (current_language->emitchar (ch, type, stream, quoter))
658
659 /* Test a character to decide whether it can be printed in literal form
660 or needs to be printed in another representation. For example,
661 in C the literal form of the character with octal value 141 is 'a'
662 and the "other representation" is '\141'. The "other representation"
663 is program language dependent. */
664
665 #define PRINT_LITERAL_FORM(c) \
666 ((c) >= 0x20 \
667 && ((c) < 0x7F || (c) >= 0xA0) \
668 && (!sevenbit_strings || (c) < 0x80))
669
670 /* Type predicates */
671
672 extern int pointer_type (struct type *);
673
674 /* Error messages */
675
676 extern void range_error (const char *, ...) ATTRIBUTE_PRINTF (1, 2);
677
678 /* Data: Does this value represent "truth" to the current language? */
679
680 extern int value_true (struct value *);
681
682 /* Misc: The string representing a particular enum language. */
683
684 extern enum language language_enum (const char *str);
685
686 extern const struct language_defn *language_def (enum language);
687
688 extern const char *language_str (enum language);
689
690 /* Check for a language-specific trampoline. */
691
692 extern CORE_ADDR skip_language_trampoline (struct frame_info *, CORE_ADDR pc);
693
694 /* Return demangled language symbol, or NULL. */
695 extern char *language_demangle (const struct language_defn *current_language,
696 const char *mangled, int options);
697
698 /* Return information about whether TYPE should be passed
699 (and returned) by reference at the language level. */
700 struct language_pass_by_ref_info language_pass_by_reference (struct type *type);
701
702 void c_get_string (struct value *value,
703 gdb::unique_xmalloc_ptr<gdb_byte> *buffer,
704 int *length, struct type **char_type,
705 const char **charset);
706
707 /* Get LANG's symbol_name_matcher method for LOOKUP_NAME. Returns
708 default_symbol_name_matcher if not set. LANG is used as a hint;
709 the function may ignore it depending on the current language and
710 LOOKUP_NAME. Specifically, if the current language is Ada, this
711 may return an Ada matcher regardless of LANG. */
712 symbol_name_matcher_ftype *get_symbol_name_matcher
713 (const language_defn *lang, const lookup_name_info &lookup_name);
714
715 /* Save the current language and restore it upon destruction. */
716
717 class scoped_restore_current_language
718 {
719 public:
720
721 explicit scoped_restore_current_language ()
722 : m_lang (current_language->la_language)
723 {
724 }
725
726 ~scoped_restore_current_language ()
727 {
728 set_language (m_lang);
729 }
730
731 scoped_restore_current_language (const scoped_restore_current_language &)
732 = delete;
733 scoped_restore_current_language &operator=
734 (const scoped_restore_current_language &) = delete;
735
736 private:
737
738 enum language m_lang;
739 };
740
741 /* If language_mode is language_mode_auto,
742 then switch current language to the language of SYM
743 and restore current language upon destruction.
744
745 Else do nothing. */
746
747 class scoped_switch_to_sym_language_if_auto
748 {
749 public:
750
751 explicit scoped_switch_to_sym_language_if_auto (const struct symbol *sym)
752 {
753 if (language_mode == language_mode_auto)
754 {
755 m_lang = current_language->la_language;
756 m_switched = true;
757 set_language (sym->language ());
758 }
759 else
760 {
761 m_switched = false;
762 /* Assign to m_lang to silence a GCC warning. See
763 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80635. */
764 m_lang = language_unknown;
765 }
766 }
767
768 ~scoped_switch_to_sym_language_if_auto ()
769 {
770 if (m_switched)
771 set_language (m_lang);
772 }
773
774 DISABLE_COPY_AND_ASSIGN (scoped_switch_to_sym_language_if_auto);
775
776 private:
777 bool m_switched;
778 enum language m_lang;
779 };
780
781 #endif /* defined (LANGUAGE_H) */