* config/tc-mips.c (mips_emit_delays): Make call to
[deliverable/binutils-gdb.git] / gas / ecoff.h
CommitLineData
17ed84ed
ILT
1/* ecoff.h -- header file for ECOFF debugging support
2 Copyright (C) 1993 Free Software Foundation, Inc.
3 Contributed by Cygnus Support.
4 Put together by Ian Lance Taylor <ian@cygnus.com>.
5
6 This file is part of GAS, the GNU Assembler.
7
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to
20 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21
22#ifdef ECOFF_DEBUGGING
23
24#include "coff/sym.h"
25#include "coff/ecoff.h"
26
27/* This function should be called at the start of assembly, by
28 obj_read_begin_hook. */
29extern void ecoff_read_begin_hook PARAMS ((void));
30
31/* This function should be called when a new symbol is created, by
32 obj_symbol_new_hook. */
33extern void ecoff_symbol_new_hook PARAMS ((struct symbol *));
34
35/* Build the ECOFF debugging information. This should be called by
36 obj_frob_file. This fills in the counts in *HDR; the offsets are
37 filled in relative to the start of the *BUFP. It sets *BUFP to a
38 block of memory holding the debugging information. It returns the
39 length of *BUFP. */
40extern unsigned long ecoff_build_debug
41 PARAMS ((HDRR *hdr, char **bufp, const struct ecoff_debug_swap *));
42
43/* Functions to handle the ECOFF debugging directives. */
44extern void ecoff_directive_begin PARAMS ((int));
45extern void ecoff_directive_bend PARAMS ((int));
46extern void ecoff_directive_end PARAMS ((int));
47extern void ecoff_directive_ent PARAMS ((int));
48extern void ecoff_directive_fmask PARAMS ((int));
49extern void ecoff_directive_frame PARAMS ((int));
50extern void ecoff_directive_loc PARAMS ((int));
51extern void ecoff_directive_mask PARAMS ((int));
52
53/* Functions to handle the COFF debugging directives. */
54extern void ecoff_directive_def PARAMS ((int));
55extern void ecoff_directive_dim PARAMS ((int));
56extern void ecoff_directive_endef PARAMS ((int));
57extern void ecoff_directive_file PARAMS ((int));
58extern void ecoff_directive_scl PARAMS ((int));
59extern void ecoff_directive_size PARAMS ((int));
60extern void ecoff_directive_tag PARAMS ((int));
61extern void ecoff_directive_type PARAMS ((int));
62extern void ecoff_directive_val PARAMS ((int));
63
64/* Handle stabs. */
65extern void ecoff_stab PARAMS ((int what, const char *string,
66 int type, int other, int desc));
67
68/* Set the GP prologue size. */
69extern void ecoff_set_gp_prolog_size PARAMS ((int sz));
70
71/* This routine is called from the ECOFF code to set the external
72 information for a symbol. */
73#ifndef obj_ecoff_set_ext
74extern void obj_ecoff_set_ext PARAMS ((struct symbol *, EXTR *));
75#endif
76
77#endif /* ECOFF_DEBUGGING */
This page took 0.036528 seconds and 4 git commands to generate.