* stack.c (print_frame_info): When checking PC_IN_CALL_DUMMY,
[deliverable/binutils-gdb.git] / gas / config / obj-elf.h
CommitLineData
bd4d4b8a
KR
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 "struc-symbol.h"
37#include "targ-cpu.h"
38
39#ifndef FALSE
40#define FALSE 0
41#define TRUE !FALSE
42#endif
43
44/* should be conditional on address size! */
45#ifdef sparcv9
46#define elf_symbol(asymbol) ((elf64_symbol_type *)(&(asymbol)->the_bfd)) /*v9*/
47#else /* not v9 */
48#define elf_symbol(asymbol) ((elf32_symbol_type *)(&(asymbol)->the_bfd))
49#endif /* v9? */
50
51#define S_SET_OTHER(S,V) (elf_symbol((S)->bsym)->other = (V))
52#define S_SET_TYPE(S,T) (elf_symbol((S)->bsym)->type = (T))
53#define S_SET_DESC(S,D) (elf_symbol((S)->bsym)->desc = (D))
54#define S_GET_OTHER(S) (elf_symbol((S)->bsym)->other)
55#define S_GET_TYPE(S) (elf_symbol((S)->bsym)->type)
56#define S_GET_DESC(S) (elf_symbol((S)->bsym)->desc)
57
58#define S_SET_SIZE(S,V) (elf_symbol((S)->bsym)->internal_elf_sym.st_size)
59
60extern asection *gdb_section;
61
62#define tc_frob_symbol(S,PUNT) if ( obj_elf_frob_symbol (S, &PUNT) ) { i++; continue; }
63
64#define obj_write_symbol(S) obj_elf_write_symbol (S)
65
66#define obj_frob_file() elf_frob_file()
67
68extern int obj_elf_frob_symbol PARAMS ((symbolS *, int *));
69extern void elf_frob_file PARAMS ((void));
70extern void elf_file_symbol PARAMS ((char *));
71
72#endif /* _OBJ_ELF_H */
This page took 0.025856 seconds and 4 git commands to generate.