15796c8dcSSimon Schubert /* Read a symbol table in ECOFF format (Third-Eye). 25796c8dcSSimon Schubert 3*ef5ccd6cSJohn Marino Copyright (C) 2004-2013 Free Software Foundation, Inc. 45796c8dcSSimon Schubert 55796c8dcSSimon Schubert This file is part of GDB. 65796c8dcSSimon Schubert 75796c8dcSSimon Schubert This program is free software; you can redistribute it and/or modify 85796c8dcSSimon Schubert it under the terms of the GNU General Public License as published by 95796c8dcSSimon Schubert the Free Software Foundation; either version 3 of the License, or 105796c8dcSSimon Schubert (at your option) any later version. 115796c8dcSSimon Schubert 125796c8dcSSimon Schubert This program is distributed in the hope that it will be useful, 135796c8dcSSimon Schubert but WITHOUT ANY WARRANTY; without even the implied warranty of 145796c8dcSSimon Schubert MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 155796c8dcSSimon Schubert GNU General Public License for more details. 165796c8dcSSimon Schubert 175796c8dcSSimon Schubert You should have received a copy of the GNU General Public License 185796c8dcSSimon Schubert along with this program. If not, see <http://www.gnu.org/licenses/>. */ 195796c8dcSSimon Schubert 205796c8dcSSimon Schubert #ifndef MDEBUGREAD_H 215796c8dcSSimon Schubert #define MDEBUGREAD_H 225796c8dcSSimon Schubert 235796c8dcSSimon Schubert #include "coff/sym.h" /* Needed for PDR below. */ 245796c8dcSSimon Schubert #include "coff/symconst.h" 255796c8dcSSimon Schubert 265796c8dcSSimon Schubert /* Specific information about a procedure. Architectures (ab)uses 275796c8dcSSimon Schubert this to save memory. */ 285796c8dcSSimon Schubert 295796c8dcSSimon Schubert struct mdebug_extra_func_info 305796c8dcSSimon Schubert { 31c50c785cSJohn Marino long numargs; /* Number of args to procedure (was iopt). */ 32c50c785cSJohn Marino PDR pdr; /* Procedure descriptor record. */ 335796c8dcSSimon Schubert }; 345796c8dcSSimon Schubert 355796c8dcSSimon Schubert /* Special symbol found in blocks associated with routines. We can 365796c8dcSSimon Schubert hang mdebug_extra_func_info's off of this. */ 375796c8dcSSimon Schubert 385796c8dcSSimon Schubert #define MDEBUG_EFI_SYMBOL_NAME "__GDB_EFI_INFO__" 395796c8dcSSimon Schubert 405796c8dcSSimon Schubert #endif /* MDEBUGREAD_H */ 41