Return unique_ptr from language_defn::get_compile_context
[deliverable/binutils-gdb.git] / gdb / auto-load.h
1 /* GDB routines for supporting auto-loaded scripts.
2
3 Copyright (C) 2012-2021 Free Software Foundation, Inc.
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 #ifndef AUTO_LOAD_H
21 #define AUTO_LOAD_H 1
22
23 struct objfile;
24 struct program_space;
25 struct auto_load_pspace_info;
26 struct extension_language_defn;
27
28 /* Value of the 'set debug auto-load' configuration variable. */
29
30 extern bool debug_auto_load;
31
32 /* Print an "auto-load" debug statement. */
33
34 #define auto_load_debug_printf(fmt, ...) \
35 debug_prefixed_printf_cond (debug_auto_load, "auto-load", fmt, ##__VA_ARGS__)
36
37 extern bool global_auto_load;
38
39 extern bool auto_load_local_gdbinit;
40 extern char *auto_load_local_gdbinit_pathname;
41 extern bool auto_load_local_gdbinit_loaded;
42
43 extern struct auto_load_pspace_info *
44 get_auto_load_pspace_data_for_loading (struct program_space *pspace);
45 extern void auto_load_objfile_script (struct objfile *objfile,
46 const struct extension_language_defn *);
47 extern void load_auto_scripts_for_objfile (struct objfile *objfile);
48 extern char auto_load_info_scripts_pattern_nl[];
49 extern void auto_load_info_scripts (const char *pattern, int from_tty,
50 const struct extension_language_defn *);
51
52 extern struct cmd_list_element **auto_load_set_cmdlist_get (void);
53 extern struct cmd_list_element **auto_load_show_cmdlist_get (void);
54 extern struct cmd_list_element **auto_load_info_cmdlist_get (void);
55
56 /* Return true if FILENAME is located in one of the directories of
57 AUTO_LOAD_SAFE_PATH. Otherwise call warning and return false. FILENAME does
58 not have to be an absolute path.
59
60 Existence of FILENAME is not checked. Function will still give a warning
61 even if the caller would quietly skip non-existing file in unsafe
62 directory. */
63
64 extern bool file_is_auto_load_safe (const char *filename);
65
66 /* Return true if auto-loading gdb scripts is enabled. */
67
68 extern bool auto_load_gdb_scripts_enabled
69 (const struct extension_language_defn *extlang);
70
71 #endif /* AUTO_LOAD_H */
This page took 0.06281 seconds and 4 git commands to generate.