gdb: fix vfork with multiple threads
[deliverable/binutils-gdb.git] / gdb / extension.c
CommitLineData
6dddc817
DE
1/* Interface between gdb and its extension languages.
2
3666a048 3 Copyright (C) 2014-2021 Free Software Foundation, Inc.
6dddc817
DE
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20/* Note: With few exceptions, external functions and variables in this file
21 have "ext_lang" in the name, and no other symbol in gdb does. */
22
23#include "defs.h"
24#include <signal.h>
4de283e4 25#include "target.h"
6dddc817
DE
26#include "auto-load.h"
27#include "breakpoint.h"
28#include "event-top.h"
d55e5aa6 29#include "extension.h"
4de283e4 30#include "extension-priv.h"
76727919 31#include "observable.h"
4de283e4 32#include "cli/cli-script.h"
6dddc817 33#include "python/python.h"
4de283e4 34#include "guile/guile.h"
38eae084 35#include <array>
6dddc817
DE
36
37static script_sourcer_func source_gdb_script;
38static objfile_script_sourcer_func source_gdb_objfile_script;
39
40/* GDB's own scripting language.
41 This exists, in part, to support auto-loading ${prog}-gdb.gdb scripts. */
42
43static const struct extension_language_script_ops
44 extension_language_gdb_script_ops =
45{
46 source_gdb_script,
47 source_gdb_objfile_script,
9f050062 48 NULL, /* objfile_script_executor */
6dddc817
DE
49 auto_load_gdb_scripts_enabled
50};
51
52const struct extension_language_defn extension_language_gdb =
53{
54 EXT_LANG_GDB,
55 "gdb",
56 "GDB",
57
58 /* We fall back to interpreting a script as a GDB script if it doesn't
59 match the other scripting languages, but for consistency's sake
60 give it a formal suffix. */
61 ".gdb",
62 "-gdb.gdb",
63
64 /* cli_control_type: This is never used: GDB's own scripting language
65 has a variety of control types (if, while, etc.). */
66 commands_control,
67
68 &extension_language_gdb_script_ops,
69
70 /* The rest of the extension language interface isn't supported by GDB's own
71 extension/scripting language. */
72 NULL
73};
74
75/* NULL-terminated table of all external (non-native) extension languages.
76
77 The order of appearance in the table is important.
78 When multiple extension languages provide the same feature, for example
79 a pretty-printer for a particular type, which one gets used?
80 The algorithm employed here is "the first one wins". For example, in
81 the case of pretty-printers this means the first one to provide a
82 pretty-printed value is the one that is used. This algorithm is employed
83 throughout. */
84
38eae084 85static const std::array<const extension_language_defn *, 2> extension_languages
6dddc817
DE
86{
87 /* To preserve existing behaviour, python should always appear first. */
88 &extension_language_python,
ed3ef339 89 &extension_language_guile,
6dddc817
DE
90};
91
92/* Return a pointer to the struct extension_language_defn object of
93 extension language LANG.
94 This always returns a non-NULL pointer, even if support for the language
95 is not compiled into this copy of GDB. */
96
97const struct extension_language_defn *
98get_ext_lang_defn (enum extension_language lang)
99{
6dddc817
DE
100 gdb_assert (lang != EXT_LANG_NONE);
101
102 if (lang == EXT_LANG_GDB)
103 return &extension_language_gdb;
104
38eae084 105 for (const struct extension_language_defn *extlang : extension_languages)
6dddc817
DE
106 {
107 if (extlang->language == lang)
108 return extlang;
109 }
110
111 gdb_assert_not_reached ("unable to find extension_language_defn");
112}
113
114/* Return TRUE if FILE has extension EXTENSION. */
115
116static int
117has_extension (const char *file, const char *extension)
118{
119 int file_len = strlen (file);
120 int extension_len = strlen (extension);
121
122 return (file_len > extension_len
123 && strcmp (&file[file_len - extension_len], extension) == 0);
124}
125
126/* Return the extension language of FILE, or NULL if
127 the extension language of FILE is not recognized.
128 This is done by looking at the file's suffix. */
129
130const struct extension_language_defn *
131get_ext_lang_of_file (const char *file)
132{
ed2a2229
CB
133 if (has_extension (file, extension_language_gdb.suffix))
134 return &extension_language_gdb;
135
38eae084 136 for (const struct extension_language_defn *extlang : extension_languages)
6dddc817
DE
137 {
138 if (has_extension (file, extlang->suffix))
139 return extlang;
140 }
141
142 return NULL;
143}
144
145/* Return non-zero if support for the specified extension language
146 is compiled in. */
147
148int
149ext_lang_present_p (const struct extension_language_defn *extlang)
150{
151 return extlang->script_ops != NULL;
152}
153
154/* Return non-zero if the specified extension language has successfully
155 initialized. */
156
157int
158ext_lang_initialized_p (const struct extension_language_defn *extlang)
159{
160 if (extlang->ops != NULL)
161 {
162 /* This method is required. */
163 gdb_assert (extlang->ops->initialized != NULL);
164 return extlang->ops->initialized (extlang);
165 }
166
167 return 0;
168}
169
170/* Throw an error indicating EXTLANG is not supported in this copy of GDB. */
171
172void
173throw_ext_lang_unsupported (const struct extension_language_defn *extlang)
174{
175 error (_("Scripting in the \"%s\" language is not supported"
176 " in this copy of GDB."),
177 ext_lang_capitalized_name (extlang));
178}
179\f
180/* Methods for GDB's own extension/scripting language. */
181
182/* The extension_language_script_ops.script_sourcer "method". */
183
184static void
185source_gdb_script (const struct extension_language_defn *extlang,
186 FILE *stream, const char *file)
187{
188 script_from_file (stream, file);
189}
190
191/* The extension_language_script_ops.objfile_script_sourcer "method". */
192
193static void
194source_gdb_objfile_script (const struct extension_language_defn *extlang,
195 struct objfile *objfile,
196 FILE *stream, const char *file)
197{
198 script_from_file (stream, file);
199}
200\f
201/* Accessors for "public" attributes of struct extension_language. */
202
203/* Return the "name" field of EXTLANG. */
204
205const char *
206ext_lang_name (const struct extension_language_defn *extlang)
207{
208 return extlang->name;
209}
210
211/* Return the "capitalized_name" field of EXTLANG. */
212
213const char *
214ext_lang_capitalized_name (const struct extension_language_defn *extlang)
215{
216 return extlang->capitalized_name;
217}
218
219/* Return the "suffix" field of EXTLANG. */
220
221const char *
222ext_lang_suffix (const struct extension_language_defn *extlang)
223{
224 return extlang->suffix;
225}
226
227/* Return the "auto_load_suffix" field of EXTLANG. */
228
229const char *
230ext_lang_auto_load_suffix (const struct extension_language_defn *extlang)
231{
232 return extlang->auto_load_suffix;
233}
234\f
235/* extension_language_script_ops wrappers. */
236
237/* Return the script "sourcer" function for EXTLANG.
238 This is the function that loads and processes a script.
239 If support for this language isn't compiled in, NULL is returned. */
240
241script_sourcer_func *
242ext_lang_script_sourcer (const struct extension_language_defn *extlang)
243{
244 if (extlang->script_ops == NULL)
245 return NULL;
246
247 /* The extension language is required to implement this function. */
248 gdb_assert (extlang->script_ops->script_sourcer != NULL);
249
250 return extlang->script_ops->script_sourcer;
251}
252
253/* Return the objfile script "sourcer" function for EXTLANG.
254 This is the function that loads and processes a script for a particular
255 objfile.
256 If support for this language isn't compiled in, NULL is returned. */
257
258objfile_script_sourcer_func *
259ext_lang_objfile_script_sourcer (const struct extension_language_defn *extlang)
260{
261 if (extlang->script_ops == NULL)
262 return NULL;
263
264 /* The extension language is required to implement this function. */
265 gdb_assert (extlang->script_ops->objfile_script_sourcer != NULL);
266
267 return extlang->script_ops->objfile_script_sourcer;
268}
269
9f050062
DE
270/* Return the objfile script "executor" function for EXTLANG.
271 This is the function that executes a script for a particular objfile.
272 If support for this language isn't compiled in, NULL is returned.
273 The extension language is not required to implement this function. */
274
275objfile_script_executor_func *
276ext_lang_objfile_script_executor
277 (const struct extension_language_defn *extlang)
278{
279 if (extlang->script_ops == NULL)
280 return NULL;
281
282 return extlang->script_ops->objfile_script_executor;
283}
284
db972fce 285/* See extension.h. */
6dddc817 286
db972fce 287bool
6dddc817
DE
288ext_lang_auto_load_enabled (const struct extension_language_defn *extlang)
289{
290 if (extlang->script_ops == NULL)
db972fce 291 return false;
6dddc817
DE
292
293 /* The extension language is required to implement this function. */
294 gdb_assert (extlang->script_ops->auto_load_enabled != NULL);
295
296 return extlang->script_ops->auto_load_enabled (extlang);
297}
298\f
913832e9
AB
299
300/* RAII class used to temporarily return SIG to its default handler. */
301
302template<int SIG>
303struct scoped_default_signal
304{
305 scoped_default_signal ()
306 { m_old_sig_handler = signal (SIG, SIG_DFL); }
307
308 ~scoped_default_signal ()
309 { signal (SIG, m_old_sig_handler); }
310
311 DISABLE_COPY_AND_ASSIGN (scoped_default_signal);
312
313private:
314 /* The previous signal handler that needs to be restored. */
315 sighandler_t m_old_sig_handler;
316};
317
318/* Class to temporarily return SIGINT to its default handler. */
319
320using scoped_default_sigint = scoped_default_signal<SIGINT>;
321
6dddc817
DE
322/* Functions that iterate over all extension languages.
323 These only iterate over external extension languages, not including
324 GDB's own extension/scripting language, unless otherwise indicated. */
325
041ca48e
AB
326/* Wrapper to call the extension_language_ops.initialize "method" for each
327 compiled-in extension language. */
6dddc817
DE
328
329void
041ca48e 330ext_lang_initialization (void)
6dddc817 331{
38eae084 332 for (const struct extension_language_defn *extlang : extension_languages)
6dddc817 333 {
38eae084 334 if (extlang->ops != nullptr
041ca48e 335 && extlang->ops->initialize != NULL)
913832e9
AB
336 {
337 scoped_default_sigint set_sigint_to_default_handler;
041ca48e 338 extlang->ops->initialize (extlang);
913832e9 339 }
6dddc817
DE
340 }
341}
342
343/* Invoke the appropriate extension_language_ops.eval_from_control_command
344 method to perform CMD, which is a list of commands in an extension language.
345
346 This function is what implements, for example:
347
348 python
349 print 42
350 end
351
352 in a GDB script. */
353
354void
355eval_ext_lang_from_control_command (struct command_line *cmd)
356{
38eae084 357 for (const struct extension_language_defn *extlang : extension_languages)
6dddc817
DE
358 {
359 if (extlang->cli_control_type == cmd->control_type)
360 {
feef67ab
DE
361 if (extlang->ops != NULL
362 && extlang->ops->eval_from_control_command != NULL)
6dddc817
DE
363 {
364 extlang->ops->eval_from_control_command (extlang, cmd);
365 return;
366 }
367 /* The requested extension language is not supported in this GDB. */
368 throw_ext_lang_unsupported (extlang);
369 }
370 }
371
372 gdb_assert_not_reached ("unknown extension language in command_line");
373}
374
375/* Search for and load scripts for OBJFILE written in extension languages.
376 This includes GDB's own scripting language.
377
378 This function is what implements the loading of OBJFILE-gdb.py and
379 OBJFILE-gdb.gdb. */
380
381void
382auto_load_ext_lang_scripts_for_objfile (struct objfile *objfile)
383{
38eae084
TT
384 const struct extension_language_defn *gdb = &extension_language_gdb;
385 if (ext_lang_auto_load_enabled (gdb))
386 auto_load_objfile_script (objfile, gdb);
6dddc817 387
38eae084 388 for (const struct extension_language_defn *extlang : extension_languages)
6dddc817 389 {
38eae084
TT
390 if (extlang->ops != nullptr
391 && ext_lang_auto_load_enabled (extlang))
6dddc817
DE
392 auto_load_objfile_script (objfile, extlang);
393 }
394}
395\f
396/* Interface to type pretty-printers implemented in an extension language. */
397
398/* Call this at the start when preparing to pretty-print a type.
399 The result is a pointer to an opaque object (to the caller) to be passed
400 to apply_ext_lang_type_printers and free_ext_lang_type_printers.
401
402 We don't know in advance which extension language will provide a
403 pretty-printer for the type, so all are initialized. */
404
c819b2c0 405ext_lang_type_printers::ext_lang_type_printers ()
6dddc817 406{
38eae084 407 for (const struct extension_language_defn *extlang : extension_languages)
6dddc817 408 {
38eae084
TT
409 if (extlang->ops != nullptr
410 && extlang->ops->start_type_printers != NULL)
c819b2c0 411 extlang->ops->start_type_printers (extlang, this);
6dddc817 412 }
6dddc817
DE
413}
414
415/* Iteratively try the type pretty-printers specified by PRINTERS
416 according to the standard search order (specified by extension_languages),
417 returning the result of the first one that succeeds.
418 If there was an error, or if no printer succeeds, then NULL is returned. */
419
420char *
421apply_ext_lang_type_printers (struct ext_lang_type_printers *printers,
422 struct type *type)
423{
38eae084 424 for (const struct extension_language_defn *extlang : extension_languages)
6dddc817
DE
425 {
426 char *result = NULL;
427 enum ext_lang_rc rc;
428
38eae084
TT
429 if (extlang->ops == nullptr
430 || extlang->ops->apply_type_printers == NULL)
6dddc817
DE
431 continue;
432 rc = extlang->ops->apply_type_printers (extlang, printers, type,
433 &result);
434 switch (rc)
435 {
436 case EXT_LANG_RC_OK:
437 gdb_assert (result != NULL);
438 return result;
439 case EXT_LANG_RC_ERROR:
440 return NULL;
441 case EXT_LANG_RC_NOP:
442 break;
443 default:
444 gdb_assert_not_reached ("bad return from apply_type_printers");
445 }
446 }
447
448 return NULL;
449}
450
c819b2c0 451ext_lang_type_printers::~ext_lang_type_printers ()
6dddc817 452{
38eae084 453 for (const struct extension_language_defn *extlang : extension_languages)
6dddc817 454 {
38eae084
TT
455 if (extlang->ops != nullptr
456 && extlang->ops->free_type_printers != NULL)
c819b2c0 457 extlang->ops->free_type_printers (extlang, this);
6dddc817 458 }
6dddc817
DE
459}
460\f
42331a1e
TT
461/* Try to pretty-print a value onto stdio stream STREAM according to
462 OPTIONS. VAL is the object to print. Returns non-zero if the
463 value was successfully pretty-printed.
6dddc817
DE
464
465 Extension languages are tried in the order specified by
466 extension_languages. The first one to provide a pretty-printed
467 value "wins".
468
469 If an error is encountered in a pretty-printer, no further extension
470 languages are tried.
471 Note: This is different than encountering a memory error trying to read a
472 value for pretty-printing. Here we're referring to, e.g., programming
473 errors that trigger an exception in the extension language. */
474
475int
42331a1e 476apply_ext_lang_val_pretty_printer (struct value *val,
6dddc817 477 struct ui_file *stream, int recurse,
6dddc817
DE
478 const struct value_print_options *options,
479 const struct language_defn *language)
480{
38eae084 481 for (const struct extension_language_defn *extlang : extension_languages)
6dddc817
DE
482 {
483 enum ext_lang_rc rc;
484
38eae084
TT
485 if (extlang->ops == nullptr
486 || extlang->ops->apply_val_pretty_printer == NULL)
6dddc817 487 continue;
42331a1e
TT
488 rc = extlang->ops->apply_val_pretty_printer (extlang, val, stream,
489 recurse, options, language);
6dddc817
DE
490 switch (rc)
491 {
492 case EXT_LANG_RC_OK:
493 return 1;
494 case EXT_LANG_RC_ERROR:
495 return 0;
496 case EXT_LANG_RC_NOP:
497 break;
498 default:
499 gdb_assert_not_reached ("bad return from apply_val_pretty_printer");
500 }
501 }
502
503 return 0;
504}
505
506/* GDB access to the "frame filter" feature.
507 FRAME is the source frame to start frame-filter invocation. FLAGS is an
508 integer holding the flags for printing. The following elements of
509 the FRAME_FILTER_FLAGS enum denotes the make-up of FLAGS:
510 PRINT_LEVEL is a flag indicating whether to print the frame's
511 relative level in the output. PRINT_FRAME_INFO is a flag that
512 indicates whether this function should print the frame
513 information, PRINT_ARGS is a flag that indicates whether to print
514 frame arguments, and PRINT_LOCALS, likewise, with frame local
515 variables. ARGS_TYPE is an enumerator describing the argument
516 format, OUT is the output stream to print. FRAME_LOW is the
517 beginning of the slice of frames to print, and FRAME_HIGH is the
518 upper limit of the frames to count. Returns EXT_LANG_BT_ERROR on error,
519 or EXT_LANG_BT_COMPLETED on success.
520
521 Extension languages are tried in the order specified by
522 extension_languages. The first one to provide a filter "wins".
523 If there is an error (EXT_LANG_BT_ERROR) it is reported immediately
524 rather than trying filters in other extension languages. */
525
526enum ext_lang_bt_status
d4dd3282
TT
527apply_ext_lang_frame_filter (struct frame_info *frame,
528 frame_filter_flags flags,
6dddc817
DE
529 enum ext_lang_frame_args args_type,
530 struct ui_out *out,
531 int frame_low, int frame_high)
532{
38eae084 533 for (const struct extension_language_defn *extlang : extension_languages)
6dddc817
DE
534 {
535 enum ext_lang_bt_status status;
536
38eae084
TT
537 if (extlang->ops == nullptr
538 || extlang->ops->apply_frame_filter == NULL)
6dddc817
DE
539 continue;
540 status = extlang->ops->apply_frame_filter (extlang, frame, flags,
541 args_type, out,
542 frame_low, frame_high);
543 /* We use the filters from the first extension language that has
544 applicable filters. Also, an error is reported immediately
545 rather than continue trying. */
546 if (status != EXT_LANG_BT_NO_FILTERS)
547 return status;
548 }
549
550 return EXT_LANG_BT_NO_FILTERS;
551}
552
553/* Update values held by the extension language when OBJFILE is discarded.
554 New global types must be created for every such value, which must then be
555 updated to use the new types.
556 The function typically just iterates over all appropriate values and
557 calls preserve_one_value for each one.
558 COPIED_TYPES is used to prevent cycles / duplicates and is passed to
559 preserve_one_value. */
560
561void
562preserve_ext_lang_values (struct objfile *objfile, htab_t copied_types)
563{
38eae084 564 for (const struct extension_language_defn *extlang : extension_languages)
6dddc817 565 {
38eae084
TT
566 if (extlang->ops != nullptr
567 && extlang->ops->preserve_values != NULL)
6dddc817
DE
568 extlang->ops->preserve_values (extlang, objfile, copied_types);
569 }
570}
571
572/* If there is a stop condition implemented in an extension language for
573 breakpoint B, return a pointer to the extension language's definition.
574 Otherwise return NULL.
575 If SKIP_LANG is not EXT_LANG_NONE, skip checking this language.
576 This is for the case where we're setting a new condition: Only one
577 condition is allowed, so when setting a condition for any particular
578 extension language, we need to check if any other extension language
579 already has a condition set. */
580
581const struct extension_language_defn *
582get_breakpoint_cond_ext_lang (struct breakpoint *b,
583 enum extension_language skip_lang)
584{
38eae084 585 for (const struct extension_language_defn *extlang : extension_languages)
6dddc817 586 {
38eae084
TT
587 if (extlang->ops != nullptr
588 && extlang->language != skip_lang
6dddc817
DE
589 && extlang->ops->breakpoint_has_cond != NULL
590 && extlang->ops->breakpoint_has_cond (extlang, b))
591 return extlang;
592 }
593
594 return NULL;
595}
596
597/* Return whether a stop condition for breakpoint B says to stop.
598 True is also returned if there is no stop condition for B. */
599
600int
601breakpoint_ext_lang_cond_says_stop (struct breakpoint *b)
602{
6dddc817
DE
603 enum ext_lang_bp_stop stop = EXT_LANG_BP_STOP_UNSET;
604
38eae084 605 for (const struct extension_language_defn *extlang : extension_languages)
6dddc817
DE
606 {
607 /* There is a rule that a breakpoint can have at most one of any of a
608 CLI or extension language condition. However, Python hacks in "finish
609 breakpoints" on top of the "stop" check, so we have to call this for
610 every language, even if we could first determine whether a "stop"
611 method exists. */
38eae084
TT
612 if (extlang->ops != nullptr
613 && extlang->ops->breakpoint_cond_says_stop != NULL)
6dddc817
DE
614 {
615 enum ext_lang_bp_stop this_stop
616 = extlang->ops->breakpoint_cond_says_stop (extlang, b);
617
618 if (this_stop != EXT_LANG_BP_STOP_UNSET)
619 {
620 /* Even though we have to check every extension language, only
621 one of them can return yes/no (because only one of them
622 can have a "stop" condition). */
623 gdb_assert (stop == EXT_LANG_BP_STOP_UNSET);
624 stop = this_stop;
625 }
626 }
627 }
628
629 return stop == EXT_LANG_BP_STOP_NO ? 0 : 1;
630}
631\f
632/* ^C/SIGINT support.
633 This requires cooperation with the extension languages so the support
634 is defined here. */
635
636/* This flag tracks quit requests when we haven't called out to an
637 extension language. it also holds quit requests when we transition to
638 an extension language that doesn't have cooperative SIGINT handling. */
639static int quit_flag;
640
641/* The current extension language we've called out to, or
642 extension_language_gdb if there isn't one.
643 This must be set everytime we call out to an extension language, and reset
644 to the previous value when it returns. Note that the previous value may
645 be a different (or the same) extension language. */
646static const struct extension_language_defn *active_ext_lang
647 = &extension_language_gdb;
648
649/* Return the currently active extension language. */
650
651const struct extension_language_defn *
652get_active_ext_lang (void)
653{
654 return active_ext_lang;
655}
656
657/* Install a SIGINT handler. */
658
659static void
660install_sigint_handler (const struct signal_handler *handler_state)
661{
662 gdb_assert (handler_state->handler_saved);
663
664 signal (SIGINT, handler_state->handler);
665}
666
667/* Install GDB's SIGINT handler, storing the previous version in *PREVIOUS.
668 As a simple optimization, if the previous version was GDB's SIGINT handler
669 then mark the previous handler as not having been saved, and thus it won't
670 be restored. */
671
672static void
673install_gdb_sigint_handler (struct signal_handler *previous)
674{
675 /* Save here to simplify comparison. */
a40805d4 676 sighandler_t handle_sigint_for_compare = handle_sigint;
6dddc817
DE
677
678 previous->handler = signal (SIGINT, handle_sigint);
679 if (previous->handler != handle_sigint_for_compare)
680 previous->handler_saved = 1;
681 else
682 previous->handler_saved = 0;
683}
684
685/* Set the currently active extension language to NOW_ACTIVE.
686 The result is a pointer to a malloc'd block of memory to pass to
687 restore_active_ext_lang.
688
689 N.B. This function must be called every time we call out to an extension
690 language, and the result must be passed to restore_active_ext_lang
691 afterwards.
692
693 If there is a pending SIGINT it is "moved" to the now active extension
694 language, if it supports cooperative SIGINT handling (i.e., it provides
695 {clear,set,check}_quit_flag methods). If the extension language does not
696 support cooperative SIGINT handling, then the SIGINT is left queued and
697 we require the non-cooperative extension language to call check_quit_flag
698 at appropriate times.
699 It is important for the extension language to call check_quit_flag if it
700 installs its own SIGINT handler to prevent the situation where a SIGINT
701 is queued on entry, extension language code runs for a "long" time possibly
702 serving one or more SIGINTs, and then returns. Upon return, if
703 check_quit_flag is not called, the original SIGINT will be thrown.
704 Non-cooperative extension languages are free to install their own SIGINT
705 handler but the original must be restored upon return, either itself
706 or via restore_active_ext_lang. */
707
708struct active_ext_lang_state *
709set_active_ext_lang (const struct extension_language_defn *now_active)
710{
711 struct active_ext_lang_state *previous
712 = XCNEW (struct active_ext_lang_state);
713
714 previous->ext_lang = active_ext_lang;
2f99e8fc 715 previous->sigint_handler.handler_saved = 0;
6dddc817
DE
716 active_ext_lang = now_active;
717
223ffa71 718 if (target_terminal::is_ours ())
2f99e8fc
YQ
719 {
720 /* If the newly active extension language uses cooperative SIGINT
721 handling then ensure GDB's SIGINT handler is installed. */
722 if (now_active->language == EXT_LANG_GDB
723 || now_active->ops->check_quit_flag != NULL)
724 install_gdb_sigint_handler (&previous->sigint_handler);
725
726 /* If there's a SIGINT recorded in the cooperative extension languages,
727 move it to the new language, or save it in GDB's global flag if the
728 newly active extension language doesn't use cooperative SIGINT
729 handling. */
730 if (check_quit_flag ())
731 set_quit_flag ();
732 }
6dddc817
DE
733
734 return previous;
735}
736
737/* Restore active extension language from PREVIOUS. */
738
739void
740restore_active_ext_lang (struct active_ext_lang_state *previous)
741{
6dddc817
DE
742 active_ext_lang = previous->ext_lang;
743
223ffa71 744 if (target_terminal::is_ours ())
2f99e8fc
YQ
745 {
746 /* Restore the previous SIGINT handler if one was saved. */
747 if (previous->sigint_handler.handler_saved)
748 install_sigint_handler (&previous->sigint_handler);
749
750 /* If there's a SIGINT recorded in the cooperative extension languages,
751 move it to the new language, or save it in GDB's global flag if the
752 newly active extension language doesn't use cooperative SIGINT
753 handling. */
754 if (check_quit_flag ())
755 set_quit_flag ();
756 }
6dddc817
DE
757 xfree (previous);
758}
759
6dddc817
DE
760/* Set the quit flag.
761 This only sets the flag in the currently active extension language.
762 If the currently active extension language does not have cooperative
763 SIGINT handling, then GDB's global flag is set, and it is up to the
764 extension language to call check_quit_flag. The extension language
765 is free to install its own SIGINT handler, but we still need to handle
766 the transition. */
767
768void
769set_quit_flag (void)
770{
771 if (active_ext_lang->ops != NULL
772 && active_ext_lang->ops->set_quit_flag != NULL)
773 active_ext_lang->ops->set_quit_flag (active_ext_lang);
774 else
f0881b37
PA
775 {
776 quit_flag = 1;
777
778 /* Now wake up the event loop, or any interruptible_select. Do
779 this after setting the flag, because signals on Windows
780 actually run on a separate thread, and thus otherwise the
781 main code could be woken up and find quit_flag still
782 clear. */
783 quit_serial_event_set ();
784 }
6dddc817
DE
785}
786
787/* Return true if the quit flag has been set, false otherwise.
788 Note: The flag is cleared as a side-effect.
789 The flag is checked in all extension languages that support cooperative
790 SIGINT handling, not just the current one. This simplifies transitions. */
791
792int
793check_quit_flag (void)
794{
38eae084 795 int result = 0;
6dddc817 796
38eae084 797 for (const struct extension_language_defn *extlang : extension_languages)
6dddc817 798 {
38eae084
TT
799 if (extlang->ops != nullptr
800 && extlang->ops->check_quit_flag != NULL)
6dddc817
DE
801 if (extlang->ops->check_quit_flag (extlang) != 0)
802 result = 1;
803 }
804
805 /* This is written in a particular way to avoid races. */
806 if (quit_flag)
807 {
f0881b37
PA
808 /* No longer need to wake up the event loop or any
809 interruptible_select. The caller handles the quit
810 request. */
811 quit_serial_event_clear ();
6dddc817
DE
812 quit_flag = 0;
813 result = 1;
814 }
815
816 return result;
817}
e81e7f5e 818
ba18742c 819/* See extension.h. */
e81e7f5e 820
ba18742c
SM
821void
822get_matching_xmethod_workers (struct type *type, const char *method_name,
823 std::vector<xmethod_worker_up> *workers)
e81e7f5e 824{
38eae084 825 for (const struct extension_language_defn *extlang : extension_languages)
e81e7f5e 826 {
e81e7f5e
SC
827 enum ext_lang_rc rc;
828
829 /* If an extension language does not support xmethods, ignore
830 it. */
38eae084
TT
831 if (extlang->ops == nullptr
832 || extlang->ops->get_matching_xmethod_workers == NULL)
e81e7f5e
SC
833 continue;
834
835 rc = extlang->ops->get_matching_xmethod_workers (extlang,
836 type, method_name,
ba18742c 837 workers);
e81e7f5e 838 if (rc == EXT_LANG_RC_ERROR)
ba18742c
SM
839 error (_("Error while looking for matching xmethod workers "
840 "defined in %s."), extlang->capitalized_name);
e81e7f5e 841 }
e81e7f5e
SC
842}
843
ba18742c 844/* See extension.h. */
e81e7f5e 845
6b1747cd
PA
846std::vector<type *>
847xmethod_worker::get_arg_types ()
e81e7f5e 848{
6b1747cd 849 std::vector<type *> type_array;
e81e7f5e 850
6b1747cd 851 ext_lang_rc rc = do_get_arg_types (&type_array);
e81e7f5e 852 if (rc == EXT_LANG_RC_ERROR)
ba18742c
SM
853 error (_("Error while looking for arg types of a xmethod worker "
854 "defined in %s."), m_extlang->capitalized_name);
e81e7f5e
SC
855
856 return type_array;
857}
858
ba18742c 859/* See extension.h. */
2ce1cdbf
DE
860
861struct type *
6b1747cd 862xmethod_worker::get_result_type (value *object, gdb::array_view<value *> args)
2ce1cdbf 863{
ba18742c 864 type *result_type;
2ce1cdbf 865
6b1747cd 866 ext_lang_rc rc = do_get_result_type (object, args, &result_type);
2ce1cdbf
DE
867 if (rc == EXT_LANG_RC_ERROR)
868 {
869 error (_("Error while fetching result type of an xmethod worker "
ba18742c 870 "defined in %s."), m_extlang->capitalized_name);
2ce1cdbf
DE
871 }
872
873 return result_type;
874}
875
f6474de9
TT
876/* See extension.h. */
877
878gdb::optional<std::string>
879ext_lang_colorize (const std::string &filename, const std::string &contents)
880{
f6474de9
TT
881 gdb::optional<std::string> result;
882
38eae084 883 for (const struct extension_language_defn *extlang : extension_languages)
f6474de9 884 {
38eae084
TT
885 if (extlang->ops == nullptr
886 || extlang->ops->colorize == nullptr)
f6474de9
TT
887 continue;
888 result = extlang->ops->colorize (filename, contents);
889 if (result.has_value ())
890 return result;
891 }
892
893 return result;
894}
895
6dddc817
DE
896/* Called via an observer before gdb prints its prompt.
897 Iterate over the extension languages giving them a chance to
898 change the prompt. The first one to change the prompt wins,
899 and no further languages are tried. */
900
901static void
902ext_lang_before_prompt (const char *current_gdb_prompt)
903{
38eae084 904 for (const struct extension_language_defn *extlang : extension_languages)
6dddc817
DE
905 {
906 enum ext_lang_rc rc;
907
38eae084
TT
908 if (extlang->ops == nullptr
909 || extlang->ops->before_prompt == NULL)
6dddc817
DE
910 continue;
911 rc = extlang->ops->before_prompt (extlang, current_gdb_prompt);
912 switch (rc)
913 {
914 case EXT_LANG_RC_OK:
915 case EXT_LANG_RC_ERROR:
916 return;
917 case EXT_LANG_RC_NOP:
918 break;
919 default:
920 gdb_assert_not_reached ("bad return from before_prompt");
921 }
922 }
923}
924
6c265988 925void _initialize_extension ();
6dddc817 926void
6c265988 927_initialize_extension ()
6dddc817 928{
c90e7d63 929 gdb::observers::before_prompt.attach (ext_lang_before_prompt, "extension");
6dddc817 930}
This page took 0.643053 seconds and 4 git commands to generate.