OpenCores
URL https://opencores.org/ocsvn/open8_urisc/open8_urisc/trunk

Subversion Repositories open8_urisc

[/] [open8_urisc/] [trunk/] [gnu/] [binutils/] [binutils/] [objdump.h] - Blame information for rev 166

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 15 khays
/* objdump.h
2 166 khays
   Copyright 2011, 2012 Free Software Foundation, Inc.
3 15 khays
 
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
 
21
struct objdump_private_option
22
{
23
  /* Option name.  */
24
  const char *name;
25
 
26
  /* TRUE if the option is selected.  Automatically set and cleared by
27
     objdump.  */
28
  unsigned int selected;
29
};
30
 
31
struct objdump_private_desc
32
{
33
  /* Help displayed for --help.  */
34
  void (*help)(FILE *stream);
35
 
36
  /* Return TRUE if these options can be applied to ABFD.  */
37
  int (*filter)(bfd *abfd);
38
 
39
  /* Do the actual work: display whatever is requested according to the
40
     options whose SELECTED field is set.  */
41
  void (*dump)(bfd *abfd);
42
 
43
  /* List of options.  Terminated by a NULL name.  */
44
  struct objdump_private_option *options;
45
};
46
 
47
/* XCOFF specific target.  */
48
extern const struct objdump_private_desc objdump_private_desc_xcoff;
49 166 khays
 
50
/* Mach-O specific target.  */
51
extern const struct objdump_private_desc objdump_private_desc_mach_o;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.