1 /* obj.h - defines the object dependent hooks for all object
4 Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
6 This file is part of GAS, the GNU Assembler.
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)
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.
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. */
24 char *obj_default_output_file_name (void);
25 void obj_crawl_symbol_chain (object_headers
* headers
);
26 void obj_emit_relocations (char **where
, fixS
* fixP
, relax_addressT segment_address_in_file
);
27 void obj_emit_strings (char **where
);
28 void obj_emit_symbols (char **where
, symbolS
* symbol_rootP
);
29 void obj_header_append (char **where
, object_headers
* headers
);
30 void obj_read_begin_hook (void);
32 #ifndef obj_symbol_new_hook
33 void obj_symbol_new_hook (symbolS
* symbolP
);
34 #endif /* obj_symbol_new_hook */
36 void obj_symbol_to_chars (char **where
, symbolS
* symbolP
);
38 #ifndef obj_pre_write_hook
39 void obj_pre_write_hook (object_headers
* headers
);
40 #endif /* obj_pre_write_hook */
42 #else /* not __STDC__ */
44 char *obj_default_output_file_name ();
45 void obj_crawl_symbol_chain ();
46 void obj_emit_relocations ();
47 void obj_emit_strings ();
48 void obj_emit_symbols ();
49 void obj_header_append ();
50 void obj_read_begin_hook ();
52 #ifndef obj_symbol_new_hook
53 void obj_symbol_new_hook ();
54 #endif /* obj_symbol_new_hook */
56 void obj_symbol_to_chars ();
58 #ifndef obj_pre_write_hook
59 void obj_pre_write_hook ();
60 #endif /* obj_pre_write_hook */
62 #endif /* not __STDC__ */
64 extern const pseudo_typeS obj_pseudo_table
[];