[gdb/testsuite] Fix dwo path in fission-*.S
[deliverable/binutils-gdb.git] / gdb / auto-load.h
CommitLineData
e2207b9a
JK
1/* GDB routines for supporting auto-loaded scripts.
2
3666a048 3 Copyright (C) 2012-2021 Free Software Foundation, Inc.
e2207b9a
JK
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
6dddc817 23struct objfile;
e2207b9a 24struct program_space;
6dddc817
DE
25struct auto_load_pspace_info;
26struct extension_language_defn;
bf88dd68 27
e197dfae
SM
28namespace gdb {
29namespace observers {
2c473def 30struct token;
e197dfae
SM
31} /* namespace observers */
32} /* namespace gdb */
2c473def 33
a59902a7
SM
34/* Value of the 'set debug auto-load' configuration variable. */
35
36extern bool debug_auto_load;
37
38/* Print an "auto-load" debug statement. */
39
40#define auto_load_debug_printf(fmt, ...) \
41 debug_prefixed_printf_cond (debug_auto_load, "auto-load", fmt, ##__VA_ARGS__)
42
491144b5 43extern bool global_auto_load;
bf88dd68 44
491144b5 45extern bool auto_load_local_gdbinit;
bf88dd68 46extern char *auto_load_local_gdbinit_pathname;
491144b5 47extern bool auto_load_local_gdbinit_loaded;
e2207b9a 48
2c473def
MW
49/* Token used for the auto_load_new_objfile observer, so other observers can
50 specify it as a dependency. */
51extern gdb::observers::token auto_load_new_objfile_observer_token;
52
e2207b9a
JK
53extern struct auto_load_pspace_info *
54 get_auto_load_pspace_data_for_loading (struct program_space *pspace);
6dddc817
DE
55extern void auto_load_objfile_script (struct objfile *objfile,
56 const struct extension_language_defn *);
bf88dd68 57extern void load_auto_scripts_for_objfile (struct objfile *objfile);
bf88dd68 58extern char auto_load_info_scripts_pattern_nl[];
1d12d88f 59extern void auto_load_info_scripts (const char *pattern, int from_tty,
6dddc817 60 const struct extension_language_defn *);
bf88dd68
JK
61
62extern struct cmd_list_element **auto_load_set_cmdlist_get (void);
63extern struct cmd_list_element **auto_load_show_cmdlist_get (void);
64extern struct cmd_list_element **auto_load_info_cmdlist_get (void);
e2207b9a 65
5e12f48f
SM
66/* Return true if FILENAME is located in one of the directories of
67 AUTO_LOAD_SAFE_PATH. Otherwise call warning and return false. FILENAME does
68 not have to be an absolute path.
69
70 Existence of FILENAME is not checked. Function will still give a warning
71 even if the caller would quietly skip non-existing file in unsafe
72 directory. */
73
a59902a7 74extern bool file_is_auto_load_safe (const char *filename);
bccbefd2 75
db972fce
SM
76/* Return true if auto-loading gdb scripts is enabled. */
77
78extern bool auto_load_gdb_scripts_enabled
6dddc817
DE
79 (const struct extension_language_defn *extlang);
80
e2207b9a 81#endif /* AUTO_LOAD_H */
This page took 0.598576 seconds and 4 git commands to generate.