]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - binutils/objdump.h
gdb/arch: assert that X86_XSTATE_MPX is not set for x32
[thirdparty/binutils-gdb.git] / binutils / objdump.h
CommitLineData
6abcee90 1/* objdump.h
fd67aa11 2 Copyright (C) 2011-2024 Free Software Foundation, Inc.
6abcee90
TG
3
4 This file is part of 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, or (at your option)
9 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, 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
20
45b8517a
NC
21/* Non-zero if wide output has been enabled. */
22extern int wide_output;
23
6abcee90
TG
24struct objdump_private_option
25{
26 /* Option name. */
27 const char *name;
28
29 /* TRUE if the option is selected. Automatically set and cleared by
30 objdump. */
31 unsigned int selected;
32};
33
34struct objdump_private_desc
35{
36 /* Help displayed for --help. */
37 void (*help)(FILE *stream);
38
39 /* Return TRUE if these options can be applied to ABFD. */
40 int (*filter)(bfd *abfd);
41
42 /* Do the actual work: display whatever is requested according to the
43 options whose SELECTED field is set. */
44 void (*dump)(bfd *abfd);
45
46 /* List of options. Terminated by a NULL name. */
47 struct objdump_private_option *options;
48};
45b8517a 49
6d0cfb9c
DC
50/* ELF32_AVR specific target. */
51extern const struct objdump_private_desc objdump_private_desc_elf32_avr;
6abcee90
TG
52
53/* XCOFF specific target. */
54extern const struct objdump_private_desc objdump_private_desc_xcoff;
c5012cd8 55
45b8517a
NC
56/* PE specific target. */
57extern const struct objdump_private_desc objdump_private_desc_pe;
58
c5012cd8
TG
59/* Mach-O specific target. */
60extern const struct objdump_private_desc objdump_private_desc_mach_o;