gdb/dwarf2-frame-tailcall.h - gdb

Macros defined

Source code

  1. /* Definitions for virtual tail call frames unwinder for GDB.

  2.    Copyright (C) 2010-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 DWARF2_FRAME_TAILCALL_H
  15. #define DWARF2_FRAME_TAILCALL_H 1

  16. struct frame_info;
  17. struct frame_unwind;

  18. /* The tail call frame unwinder.  */

  19. extern void
  20.   dwarf2_tailcall_sniffer_first (struct frame_info *this_frame,
  21.                                  void **tailcall_cachep,
  22.                                  const LONGEST *entry_cfa_sp_offsetp);

  23. extern struct value *
  24.   dwarf2_tailcall_prev_register_first (struct frame_info *this_frame,
  25.                                        void **tailcall_cachep, int regnum);

  26. extern const struct frame_unwind dwarf2_tailcall_frame_unwind;

  27. #endif /* !DWARF2_FRAME_TAILCALL_H */