(elf_symbol): Fixed name of elf_symbol_type.
[deliverable/binutils-gdb.git] / gas / config / obj-elf.h
1 /* ELF object file format.
2 Copyright (C) 1992, 1993 Free Software Foundation, Inc.
3
4 This file is part of GAS, the GNU Assembler.
5
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 1, or (at your option)
9 any later version.
10
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21 /* HP PA-RISC support was contributed by the Center for Software Science
22 at the University of Utah. */
23
24 #ifndef _OBJ_ELF_H
25 #define _OBJ_ELF_H
26
27 #define OBJ_ELF 1
28
29 #include <bfd.h>
30
31 #define BYTES_IN_WORD 4 /* for now */
32 #include "../bfd/libelf.h"
33
34 #define TARGET_SYMBOL_FIELDS int local:1; unsigned long sy_name_offset;
35
36 #include "targ-cpu.h"
37
38 #ifndef FALSE
39 #define FALSE 0
40 #define TRUE !FALSE
41 #endif
42
43 /* should be conditional on address size! */
44 #define elf_symbol(asymbol) ((elf_symbol_type *)(&(asymbol)->the_bfd))
45
46 #define S_SET_OTHER(S,V) (elf_symbol((S)->bsym)->other = (V))
47 #define S_SET_TYPE(S,T) (elf_symbol((S)->bsym)->type = (T))
48 #define S_SET_DESC(S,D) (elf_symbol((S)->bsym)->desc = (D))
49 #define S_GET_OTHER(S) (elf_symbol((S)->bsym)->other)
50 #define S_GET_TYPE(S) (elf_symbol((S)->bsym)->type)
51 #define S_GET_DESC(S) (elf_symbol((S)->bsym)->desc)
52
53 #define S_SET_SIZE(S,V) (elf_symbol((S)->bsym)->internal_elf_sym.st_size)
54
55 extern asection *gdb_section;
56
57 #if 0 /* This should not reference i!!
58 If it's really needed, fix it, and the call site if necessary. */
59 #define obj_frob_symbol(S,PUNT) if ( obj_elf_frob_symbol (S, &PUNT) ) { i++; continue; }
60 #endif
61
62 #define obj_write_symbol(S) obj_elf_write_symbol (S)
63
64 #define obj_frob_file() elf_frob_file()
65
66 extern int obj_elf_frob_symbol PARAMS ((struct symbol *, int *));
67 extern void elf_frob_file PARAMS ((void));
68 extern void elf_file_symbol PARAMS ((char *));
69
70 extern void obj_elf_section PARAMS ((int));
71 extern void obj_elf_previous PARAMS ((void));
72
73 #endif /* _OBJ_ELF_H */
This page took 0.032056 seconds and 5 git commands to generate.