*** empty log message ***
[deliverable/binutils-gdb.git] / bfd / libcoff.h
CommitLineData
4a81b561
DHW
1/* Copyright (C) 1990, 1991 Free Software Foundation, Inc.
2
3This file is part of BFD, the Binary File Diddler.
4
5BFD is free software; you can redistribute it and/or modify
6it under the terms of the GNU General Public License as published by
7the Free Software Foundation; either version 1, or (at your option)
8any later version.
9
10BFD is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
16along with BFD; see the file COPYING. If not, write to
17the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
18
19/* $Id$ */
20
21/* BFD COFF object file private structure. */
22
23/* Object file tdata; access macros */
24
25#define obj_icof(bfd) ((struct icofdata *) ((bfd)->tdata))
26#define exec_hdr(bfd) (obj_icof(bfd)->hdr)
27#define obj_symbols(bfd) (obj_icof(bfd)->symbols)
28#define obj_sym_filepos(bfd) (obj_icof(bfd)->sym_filepos)
29
30#define obj_relocbase(bfd) (obj_icof(bfd)->relocbase)
31#define obj_raw_syments(bfd) (obj_icof(bfd)->raw_syments)
32#define obj_convert(bfd) (obj_icof(bfd)->conversion_table)
33#define obj_symbol_slew(bfd) (obj_icof(bfd)->symbol_index_slew)
34#define obj_string_table(bfd) (obj_icof(bfd)->string_table)
35
36typedef struct {
37 asymbol symbol;
38 struct syment *native;
39 struct lineno_cache_entry *lineno;
40} coff_symbol_type;
41
42struct icofdata {
43 struct aouthdr *hdr; /* exec file header */
44 coff_symbol_type *symbols; /* symtab for input bfd */
45 unsigned int *conversion_table;
46 file_ptr sym_filepos;
47
48 long symbol_index_slew; /* used during read to mark whether a
49 C_FILE symbol as been added. */
50
51 struct syment *raw_syments;
52 struct lineno *raw_linenos;
53 unsigned int raw_syment_count;
54 char *string_table;
55 /* These are only valid once writing has begun */
56 long int relocbase;
57
58};
59
60/* We cast the address of the first element of a asymbol to ensure that the
61 * macro is only ever applied to an asymbol. */
62#define coffsymbol(asymbol) ((coff_symbol_type *)(&((asymbol)->the_bfd)))
This page took 0.025525 seconds and 4 git commands to generate.