1 /* IBM RS/6000 "XCOFF64" file definitions for BFD.
2 Copyright (C) 2000 Free Software Foundation, Inc. */
4 /********************** FILE HEADER **********************/
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
[8];/* file pointer to symtab */
11 char f_opthdr
[2]; /* sizeof(optional hdr) */
12 char f_flags
[2]; /* flags */
13 char f_nsyms
[4]; /* number of symtab entries */
17 #define U803XTOCMAGIC 0757 /* readonly text segments and TOC, XCOFF64 */
19 #define BADMAG(x) ((x).f_magic != U803XTOCMAGIC)
21 #define FILHDR struct external_filehdr
24 /********************** AOUT "OPTIONAL HEADER" **********************/
29 unsigned char magic
[2]; /* type of file */
30 unsigned char vstamp
[2]; /* version stamp */
31 unsigned char o_debugger
[4]; /* reserved */
32 unsigned char text_start
[8]; /* base of text used for this file */
33 unsigned char data_start
[8]; /* base of data used for this file */
34 unsigned char o_toc
[8]; /* address of TOC */
35 unsigned char o_snentry
[2]; /* section number of entry point */
36 unsigned char o_sntext
[2]; /* section number of .text section */
37 unsigned char o_sndata
[2]; /* section number of .data section */
38 unsigned char o_sntoc
[2]; /* section number of TOC */
39 unsigned char o_snloader
[2]; /* section number of .loader section */
40 unsigned char o_snbss
[2]; /* section number of .bss section */
41 unsigned char o_algntext
[2]; /* .text alignment */
42 unsigned char o_algndata
[2]; /* .data alignment */
43 unsigned char o_modtype
[2]; /* module type (??) */
44 unsigned char o_cputype
[2]; /* cpu type */
45 unsigned char o_resv2
[4]; /* reserved */
46 unsigned char tsize
[8]; /* text size bytes, padded to FW bdry */
47 unsigned char dsize
[8]; /* initialized data " " */
48 unsigned char bsize
[8]; /* uninitialized data " " */
49 unsigned char entry
[8]; /* entry pt. */
50 unsigned char o_maxstack
[8]; /* max stack size (??) */
51 unsigned char o_maxdata
[8]; /* max data size (??) */
52 unsigned char o_resv3
[16]; /* reserved */
57 #define SMALL_AOUTSZ (0)
60 #define RS6K_AOUTHDR_OMAGIC 0x0107 /* old: text & data writeable */
61 #define RS6K_AOUTHDR_NMAGIC 0x0108 /* new: text r/o, data r/w */
62 #define RS6K_AOUTHDR_ZMAGIC 0x010B /* paged: text r/o, both page-aligned */
65 /********************** SECTION HEADER **********************/
68 struct external_scnhdr
{
69 char s_name
[8]; /* section name */
70 char s_paddr
[8]; /* physical address, aliased s_nlib */
71 char s_vaddr
[8]; /* virtual address */
72 char s_size
[8]; /* section size */
73 char s_scnptr
[8]; /* file ptr to raw data for section */
74 char s_relptr
[8]; /* file ptr to relocation */
75 char s_lnnoptr
[8]; /* file ptr to line numbers */
76 char s_nreloc
[4]; /* number of relocation entries */
77 char s_nlnno
[4]; /* number of line number entries*/
78 char s_flags
[4]; /* flags */
79 char s_pad
[4]; /* padding */
83 * names of "special" sections
89 #define _LOADER ".loader"
91 #define SCNHDR struct external_scnhdr
95 /* XCOFF uses a special .loader section with type STYP_LOADER. */
96 #define STYP_LOADER 0x1000
98 /* XCOFF uses a special .debug section with type STYP_DEBUG. */
99 #define STYP_DEBUG 0x2000
101 /* XCOFF handles line number or relocation overflow by creating
102 another section header with STYP_OVRFLO set. */
103 #define STYP_OVRFLO 0x8000
105 /********************** LINE NUMBERS **********************/
107 /* 1 line number entry for every "breakpointable" source line in a section.
108 * Line numbers are grouped on a per function basis; first entry in a function
109 * grouping will have l_lnno = 0 and in place of physical address will be the
110 * symbol table index of the function name.
112 struct external_lineno
{
114 char l_symndx
[8];/* function name symbol index, iff l_lnno == 0*/
115 char l_paddr
[8]; /* (physical) address of line number */
117 char l_lnno
[4]; /* line number */
121 #define LINENO struct external_lineno
126 /********************** SYMBOLS **********************/
128 #define E_SYMNMLEN 8 /* # characters in a symbol name */
129 #define E_FILNMLEN 14 /* # characters in a file name */
130 #define E_DIMNUM 4 /* # array dimensions in auxiliary entry */
132 struct external_syment
146 #define N_BTMASK (017)
147 #define N_TMASK (060)
152 union external_auxent
{
157 char x_lnno
[4]; /* declaration line number */
158 char x_size
[2]; /* str/union/array size */
161 char x_lnnoptr
[8];/* ptr to fcn line */
162 char x_fsize
[4]; /* size of function */
163 char x_endndx
[4]; /* entry ndx past block end */
169 char x_fname
[E_FILNMLEN
];
174 unsigned char x_ftype
[1];
175 unsigned char x_resv
[2];
187 unsigned char x_scnlen_lo
[4];
188 unsigned char x_parmhash
[4];
189 unsigned char x_snhash
[2];
190 unsigned char x_smtyp
[1];
191 unsigned char x_smclas
[1];
192 unsigned char x_scnlen_hi
[4];
193 unsigned char x_pad
[1];
202 #define SYMENT struct external_syment
204 #define AUXENT union external_auxent
206 #define DBXMASK 0x80 /* for dbx storage mask */
207 #define SYMNAME_IN_DEBUG(symptr) ((symptr)->n_sclass & DBXMASK)
209 /* Values for auxtype field in XCOFF64, taken from AIX 4.3 sym.h */
210 #define _AUX_EXCEPT 255
213 #define _AUX_FILE 252
214 #define _AUX_CSECT 251
218 /********************** RELOCATION DIRECTIVES **********************/
221 struct external_reloc
{
229 #define RELOC struct external_reloc
232 #define DEFAULT_DATA_SECTION_ALIGNMENT 4
233 #define DEFAULT_BSS_SECTION_ALIGNMENT 4
234 #define DEFAULT_TEXT_SECTION_ALIGNMENT 4
235 /* For new sections we havn't heard of before */
236 #define DEFAULT_SECTION_ALIGNMENT 4