~ubuntu-branches/ubuntu/quantal/gclcvs/quantal

« back to all changes in this revision

Viewing changes to h/coff/i386.h

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-06-24 15:13:46 UTC
  • Revision ID: james.westby@ubuntu.com-20040624151346-xh0xaaktyyp7aorc
Tags: 2.7.0-26
C_GC_OFFSET is 2 on m68k-linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*** coff information for Intel 386/486.  */
 
2
 
 
3
 
 
4
/********************** FILE HEADER **********************/
 
5
 
 
6
struct external_filehdr {
 
7
        char f_magic[2];        /* magic number                 */
 
8
        char f_nscns[2];        /* number of sections           */
 
9
        char f_timdat[4];       /* time & date stamp            */
 
10
        char f_symptr[4];       /* file pointer to symtab       */
 
11
        char f_nsyms[4];        /* number of symtab entries     */
 
12
        char f_opthdr[2];       /* sizeof(optional hdr)         */
 
13
        char f_flags[2];        /* flags                        */
 
14
};
 
15
 
 
16
/* Bits for f_flags:
 
17
 *      F_RELFLG        relocation info stripped from file
 
18
 *      F_EXEC          file is executable (no unresolved external references)
 
19
 *      F_LNNO          line numbers stripped from file
 
20
 *      F_LSYMS         local symbols stripped from file
 
21
 *      F_AR32WR        file has byte ordering of an AR32WR machine (e.g. vax)
 
22
 */
 
23
 
 
24
#define F_RELFLG        (0x0001)
 
25
#define F_EXEC          (0x0002)
 
26
#define F_LNNO          (0x0004)
 
27
#define F_LSYMS         (0x0008)
 
28
 
 
29
 
 
30
 
 
31
#define I386MAGIC       0x14c
 
32
#define I386PTXMAGIC    0x154
 
33
#define I386AIXMAGIC    0x175
 
34
 
 
35
/* This is Lynx's all-platform magic number for executables. */
 
36
 
 
37
#define LYNXCOFFMAGIC   0415
 
38
 
 
39
#define I386BADMAG(x) (((x).f_magic != I386MAGIC) \
 
40
                       && (x).f_magic != I386AIXMAGIC \
 
41
                       && (x).f_magic != I386PTXMAGIC \
 
42
                       && (x).f_magic != LYNXCOFFMAGIC)
 
43
 
 
44
#define FILHDR  struct external_filehdr
 
45
#define FILHSZ  20
 
46
 
 
47
 
 
48
/********************** AOUT "OPTIONAL HEADER" **********************/
 
49
 
 
50
 
 
51
typedef struct 
 
52
{
 
53
  char  magic[2];               /* type of file                         */
 
54
  char  vstamp[2];              /* version stamp                        */
 
55
  char  tsize[4];               /* text size in bytes, padded to FW bdry*/
 
56
  char  dsize[4];               /* initialized data "  "                */
 
57
  char  bsize[4];               /* uninitialized data "   "             */
 
58
  char  entry[4];               /* entry pt.                            */
 
59
  char  text_start[4];          /* base of text used for this file */
 
60
  char  data_start[4];          /* base of data used for this file */
 
61
 
 
62
 
 
63
}
 
64
AOUTHDR;
 
65
 
 
66
 
 
67
#define AOUTSZ 28
 
68
#define AOUTHDRSZ 28
 
69
 
 
70
#define OMAGIC          0404    /* object files, eg as output */
 
71
#define ZMAGIC          0413    /* demand load format, eg normal ld output */
 
72
#define STMAGIC         0401    /* target shlib */
 
73
#define SHMAGIC         0443    /* host   shlib */
 
74
 
 
75
 
 
76
/* define some NT default values */
 
77
/*  #define NT_IMAGE_BASE        0x400000 moved to internal.h */
 
78
#define NT_SECTION_ALIGNMENT 0x1000
 
79
#define NT_FILE_ALIGNMENT    0x200
 
80
#define NT_DEF_RESERVE       0x100000
 
81
#define NT_DEF_COMMIT        0x1000
 
82
 
 
83
/********************** SECTION HEADER **********************/
 
84
 
 
85
 
 
86
struct external_scnhdr {
 
87
        char            s_name[8];      /* section name                 */
 
88
        char            s_paddr[4];     /* physical address, aliased s_nlib */
 
89
        char            s_vaddr[4];     /* virtual address              */
 
90
        char            s_size[4];      /* section size                 */
 
91
        char            s_scnptr[4];    /* file ptr to raw data for section */
 
92
        char            s_relptr[4];    /* file ptr to relocation       */
 
93
        char            s_lnnoptr[4];   /* file ptr to line numbers     */
 
94
        char            s_nreloc[2];    /* number of relocation entries */
 
95
        char            s_nlnno[2];     /* number of line number entries*/
 
96
        char            s_flags[4];     /* flags                        */
 
97
};
 
98
 
 
99
#define SCNHDR  struct external_scnhdr
 
100
#define SCNHSZ  40
 
101
 
 
102
/*
 
103
 * names of "special" sections
 
104
 */
 
105
#define _TEXT   ".text"
 
106
#define _DATA   ".data"
 
107
#define _BSS    ".bss"
 
108
#define _COMMENT ".comment"
 
109
#define _LIB ".lib"
 
110
 
 
111
/********************** LINE NUMBERS **********************/
 
112
 
 
113
/* 1 line number entry for every "breakpointable" source line in a section.
 
114
 * Line numbers are grouped on a per function basis; first entry in a function
 
115
 * grouping will have l_lnno = 0 and in place of physical address will be the
 
116
 * symbol table index of the function name.
 
117
 */
 
118
struct external_lineno {
 
119
        union {
 
120
                char l_symndx[4];       /* function name symbol index, iff l_lnno == 0*/
 
121
                char l_paddr[4];        /* (physical) address of line number    */
 
122
        } l_addr;
 
123
        char l_lnno[2]; /* line number          */
 
124
};
 
125
 
 
126
 
 
127
#define LINENO  struct external_lineno
 
128
#define LINESZ  6
 
129
 
 
130
 
 
131
/********************** SYMBOLS **********************/
 
132
 
 
133
#define E_SYMNMLEN      8       /* # characters in a symbol name        */
 
134
#define E_FILNMLEN      14      /* # characters in a file name          */
 
135
#define E_DIMNUM        4       /* # array dimensions in auxiliary entry */
 
136
 
 
137
struct external_syment 
 
138
{
 
139
  union {
 
140
    char e_name[E_SYMNMLEN];
 
141
    struct {
 
142
      char e_zeroes[4];
 
143
      char e_offset[4];
 
144
    } e;
 
145
  } e;
 
146
  char e_value[4];
 
147
  char e_scnum[2];
 
148
  char e_type[2];
 
149
  char e_sclass[1];
 
150
  char e_numaux[1];
 
151
};
 
152
 
 
153
#if !defined(__MINGW32__) && !defined(__CYGWIN__)
 
154
 
 
155
#define N_BTMASK        (0xf)
 
156
#define N_TMASK         (0x30)
 
157
#define N_BTSHFT        (4)
 
158
#define N_TSHIFT        (2)
 
159
 
 
160
#endif
 
161
 
 
162
union external_auxent {
 
163
        struct {
 
164
                char x_tagndx[4];       /* str, un, or enum tag indx */
 
165
                union {
 
166
                        struct {
 
167
                            char  x_lnno[2]; /* declaration line number */
 
168
                            char  x_size[2]; /* str/union/array size */
 
169
                        } x_lnsz;
 
170
                        char x_fsize[4];        /* size of function */
 
171
                } x_misc;
 
172
                union {
 
173
                        struct {                /* if ISFCN, tag, or .bb */
 
174
                            char x_lnnoptr[4];  /* ptr to fcn line # */
 
175
                            char x_endndx[4];   /* entry ndx past block end */
 
176
                        } x_fcn;
 
177
                        struct {                /* if ISARY, up to 4 dimen. */
 
178
                            char x_dimen[E_DIMNUM][2];
 
179
                        } x_ary;
 
180
                } x_fcnary;
 
181
                char x_tvndx[2];                /* tv index */
 
182
        } x_sym;
 
183
 
 
184
        union {
 
185
                char x_fname[E_FILNMLEN];
 
186
                struct {
 
187
                        char x_zeroes[4];
 
188
                        char x_offset[4];
 
189
                } x_n;
 
190
        } x_file;
 
191
 
 
192
        struct {
 
193
                char x_scnlen[4];       /* section length */
 
194
                char x_nreloc[2];       /* # relocation entries */
 
195
                char x_nlinno[2];       /* # line numbers */
 
196
                char x_checksum[4];     /* section COMDAT checksum */
 
197
                char x_associated[2];   /* COMDAT associated section index */
 
198
                char x_comdat[1];       /* COMDAT selection number */
 
199
        } x_scn;
 
200
 
 
201
        struct {
 
202
                char x_tvfill[4];       /* tv fill value */
 
203
                char x_tvlen[2];        /* length of .tv */
 
204
                char x_tvran[2][2];     /* tv range */
 
205
        } x_tv;         /* info about .tv section (in auxent of symbol .tv)) */
 
206
 
 
207
 
 
208
};
 
209
 
 
210
#define SYMENT  struct external_syment
 
211
#define SYMESZ  18      
 
212
#define AUXENT  union external_auxent
 
213
#define AUXESZ  18
 
214
 
 
215
 
 
216
#define _ETEXT  "etext"
 
217
 
 
218
 
 
219
/********************** RELOCATION DIRECTIVES **********************/
 
220
 
 
221
 
 
222
 
 
223
struct external_reloc {
 
224
  char r_vaddr[4];
 
225
  char r_symndx[4];
 
226
  char r_type[2];
 
227
};
 
228
 
 
229
 
 
230
#define RELOC struct external_reloc
 
231
#define RELSZ 10
 
232