gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / ld / plugin.h
CommitLineData
5d3236ee 1/* Plugin control for the GNU linker.
b3adc24a 2 Copyright (C) 2010-2020 Free Software Foundation, Inc.
5d3236ee
DK
3
4 This file is part of the GNU Binutils.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
20
21#ifndef GLD_PLUGIN_H
22#define GLD_PLUGIN_H
23
1715a13c
L
24/* Report plugin symbols. */
25extern bfd_boolean report_plugin_symbols;
5d3236ee 26
9e2278f5
AM
27/* Set at all symbols read time, to avoid recursively offering the plugin
28 its own newly-added input files and libs to claim. */
29extern bfd_boolean no_more_claiming;
30
5d3236ee
DK
31/* This is the only forward declaration we need to avoid having
32 to include the plugin-api.h header in order to use this file. */
33struct ld_plugin_input_file;
34
d82184d7
L
35/* Handle -plugin arg: find and load plugin. */
36extern void plugin_opt_plugin (const char *plugin);
5d3236ee
DK
37
38/* Accumulate option arguments for last-loaded plugin, or return
39 error if none. */
40extern int plugin_opt_plugin_arg (const char *arg);
41
42/* Load up and initialise all plugins after argument parsing. */
d82184d7 43extern void plugin_load_plugins (void);
5d3236ee
DK
44
45/* Return name of plugin which caused an error in any of the above. */
46extern const char *plugin_error_plugin (void);
47
48/* Call 'claim file' hook for all plugins. */
35a1e5f3 49extern void plugin_maybe_claim (lang_input_statement_type *);
5d3236ee
DK
50
51/* Call 'all symbols read' hook for all plugins. */
52extern int plugin_call_all_symbols_read (void);
53
498cd2a0
AM
54/* Call 'cleanup' hook for all plugins at exit. */
55extern void plugin_call_cleanup (void);
56
5d3236ee 57#endif /* !def GLD_PLUGIN_H */
This page took 0.475541 seconds and 4 git commands to generate.