gdb/gdb_bfd.h - gdb

Global variables defined

Macros defined

Source code

  1. /* Definitions for BFD wrappers used by GDB.

  2.    Copyright (C) 2011-2015 Free Software Foundation, Inc.

  3.    This file is part of GDB.

  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 3 of the License, or
  7.    (at your option) any later version.

  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.

  12.    You should have received a copy of the GNU General Public License
  13.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

  14. #ifndef GDB_BFD_H
  15. #define GDB_BFD_H

  16. #include "registry.h"

  17. DECLARE_REGISTRY (bfd);

  18. /* Open a read-only (FOPEN_RB) BFD given arguments like bfd_fopen.
  19.    Returns NULL on error.  On success, returns a new reference to the
  20.    BFD, which must be freed with gdb_bfd_unref.  BFDs returned by this
  21.    call are shared among all callers opening the same file.  If FD is
  22.    not -1, then after this call it is owned by BFD.  */

  23. struct bfd *gdb_bfd_open (const char *name, const char *target, int fd);

  24. /* Increment the reference count of ABFD.  It is fine for ABFD to be
  25.    NULL; in this case the function does nothing.  */

  26. void gdb_bfd_ref (struct bfd *abfd);

  27. /* Decrement the reference count of ABFD.  If this is the last
  28.    reference, ABFD will be freed.  If ABFD is NULL, this function does
  29.    nothing.  */

  30. void gdb_bfd_unref (struct bfd *abfd);

  31. /* Mark the CHILD BFD as being a member of PARENT.  Also, increment
  32.    the reference count of CHILD.  Calling this function ensures that
  33.    as along as CHILD remains alive, PARENT will as well.  Both CHILD
  34.    and PARENT must be non-NULL.  This can be called more than once
  35.    with the same arguments; but it is not allowed to call it for a
  36.    single CHILD with different values for PARENT.  */

  37. void gdb_bfd_mark_parent (bfd *child, bfd *parent);

  38. /* Mark INCLUDEE as being included by INCLUDER.
  39.    This is used to associate the life time of INCLUDEE with INCLUDER.
  40.    For example, with Fission, one file can refer to debug info in another
  41.    file, and internal tables we build for the main file (INCLUDER) may refer
  42.    to data contained in INCLUDEE.  Therefore we want to keep INCLUDEE around
  43.    at least as long as INCLUDER exists.

  44.    Note that this is different than gdb_bfd_mark_parent because in our case
  45.    lifetime tracking is based on the "parent" whereas in gdb_bfd_mark_parent
  46.    lifetime tracking is based on the "child".  Plus in our case INCLUDEE could
  47.    have multiple different "parents".  */

  48. void gdb_bfd_record_inclusion (bfd *includer, bfd *includee);

  49. /* Try to read or map the contents of the section SECT.  If
  50.    successful, the section data is returned and *SIZE is set to the
  51.    size of the section data; this may not be the same as the size
  52.    according to bfd_get_section_size if the section was compressed.
  53.    The returned section data is associated with the BFD and will be
  54.    destroyed when the BFD is destroyed.  There is no other way to free
  55.    it; for temporary uses of section data, see
  56.    bfd_malloc_and_get_section.  SECT may not have relocations.  This
  57.    function will throw on error.  */

  58. const gdb_byte *gdb_bfd_map_section (asection *section, bfd_size_type *size);

  59. /* Compute the CRC for ABFD.  The CRC is used to find and verify
  60.    separate debug files.  When successful, this fills in *CRC_OUT and
  61.    returns 1.  Otherwise, this issues a warning and returns 0.  */

  62. int gdb_bfd_crc (struct bfd *abfd, unsigned long *crc_out);



  63. /* A wrapper for bfd_fopen that initializes the gdb-specific reference
  64.    count.  */

  65. bfd *gdb_bfd_fopen (const char *, const char *, const char *, int);

  66. /* A wrapper for bfd_openr that initializes the gdb-specific reference
  67.    count.  */

  68. bfd *gdb_bfd_openr (const char *, const char *);

  69. /* A wrapper for bfd_openw that initializes the gdb-specific reference
  70.    count.  */

  71. bfd *gdb_bfd_openw (const char *, const char *);

  72. /* A wrapper for bfd_openr_iovec that initializes the gdb-specific
  73.    reference count.  */

  74. bfd *gdb_bfd_openr_iovec (const char *filename, const char *target,
  75.                           void *(*open_func) (struct bfd *nbfd,
  76.                                               void *open_closure),
  77.                           void *open_closure,
  78.                           file_ptr (*pread_func) (struct bfd *nbfd,
  79.                                                   void *stream,
  80.                                                   void *buf,
  81.                                                   file_ptr nbytes,
  82.                                                   file_ptr offset),
  83.                           int (*close_func) (struct bfd *nbfd,
  84.                                              void *stream),
  85.                           int (*stat_func) (struct bfd *abfd,
  86.                                             void *stream,
  87.                                             struct stat *sb));

  88. /* A wrapper for bfd_openr_next_archived_file that initializes the
  89.    gdb-specific reference count.  */

  90. bfd *gdb_bfd_openr_next_archived_file (bfd *archive, bfd *previous);

  91. /* A wrapper for bfd_fdopenr that initializes the gdb-specific
  92.    reference count.  */

  93. bfd *gdb_bfd_fdopenr (const char *filename, const char *target, int fd);



  94. /* Return the index of the BFD section SECTION.  Ordinarily this is
  95.    just the section's index, but for some special sections, like
  96.    bfd_com_section_ptr, it will be a synthesized value.  */

  97. int gdb_bfd_section_index (bfd *abfd, asection *section);


  98. /* Like bfd_count_sections, but include any possible global sections,
  99.    like bfd_com_section_ptr.  */

  100. int gdb_bfd_count_sections (bfd *abfd);

  101. /* Return true if any section requires relocations, false
  102.    otherwise.  */

  103. int gdb_bfd_requires_relocations (bfd *abfd);

  104. #endif /* GDB_BFD_H */