RIP gzip, we found a nicer playmate.
[dragonfly.git] / gnu / usr.bin / as / write.h
1 /* write.h
2
3    Copyright (C) 1987, 1992 Free Software Foundation, Inc.
4
5    This file is part of GAS, the GNU Assembler.
6
7    GAS is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2, or (at your option)
10    any later version.
11
12    GAS is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GAS; see the file COPYING.  If not, write to
19    the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
20 /*
21  * write.h,v 1.3 1993/10/02 20:58:02 pk Exp
22  */
23
24
25 #ifndef TC_I960
26 #ifdef hpux
27 #define EXEC_MACHINE_TYPE HP9000S200_ID
28 #endif
29 #endif /* TC_I960 */
30
31 #ifndef LOCAL_LABEL
32 #ifdef DOT_LABEL_PREFIX
33 #define LOCAL_LABEL(name) (name[0] == '.' \
34                            && (name[1] == 'L' || name[1] == '.'))
35 #else  /* not defined DOT_LABEL_PREFIX */
36 #define LOCAL_LABEL(name) (name[0] == 'L')
37 #endif /* not defined DOT_LABEL_PREFIX */
38 #endif /* LOCAL_LABEL */
39
40 #define S_LOCAL_NAME(s) (LOCAL_LABEL(S_GET_NAME(s)))
41
42 #include "bit_fix.h"
43
44 /*
45  * FixSs may be built up in any order.
46  */
47
48 struct fix {
49         fragS *fx_frag;            /* Which frag? */
50         long fx_where;             /* Where is the 1st byte to fix up? */
51         symbolS *fx_addsy;         /* NULL or Symbol whose value we add in. */
52         symbolS *fx_subsy;         /* NULL or Symbol whose value we subtract. */
53 #ifdef PIC
54         symbolS *fx_gotsy;         /* NULL or __GLOBAL_OFFSET_TABLE_ . */
55 #endif
56         long fx_offset;            /* Absolute number we add in. */
57         struct fix *fx_next;       /* NULL or -> next fixS. */
58         short int fx_size;         /* How many bytes are involved? */
59         char fx_pcrel;             /* TRUE: pc-relative. */
60         char fx_pcrel_adjust;      /* pc-relative offset adjust */
61         char fx_im_disp;           /* TRUE: value is a displacement */
62         bit_fixS *fx_bit_fixP;     /* IF NULL no bitfix's to do */
63         char fx_bsr;               /* sequent-hack */
64         enum reloc_type fx_r_type; /* Sparc hacks */
65         char fx_callj;             /* TRUE if target is a 'callj' (used by i960) */
66         long fx_addnumber;
67 };
68
69 typedef struct fix fixS;
70
71 COMMON char *next_object_file_charP;
72
73 #ifndef MANY_SEGMENTS
74 COMMON fixS *text_fix_root, *text_fix_tail;     /* Chains fixSs. */
75 COMMON fixS *data_fix_root, *data_fix_tail;     /* Chains fixSs. */
76 COMMON fixS *bss_fix_root,  *bss_fix_tail;      /* Chains fixSs. */
77 #endif
78 COMMON fixS **seg_fix_rootP, **seg_fix_tailP;   /* -> one of above. */
79 extern long string_byte_count;
80 extern int section_alignment[];
81
82 #if __STDC__ == 1
83
84 bit_fixS *bit_fix_new(int size, int offset, long base_type, long base_adj, long min, long max, long add);
85 void append(char **charPP, char *fromP, unsigned long length);
86 void record_alignment(segT seg, int align);
87 void write_object_file(void);
88
89 fixS *fix_new(fragS *frag,
90               int where,
91               int size,
92               symbolS *add_symbol,
93               symbolS *sub_symbol,
94               long offset,
95               int pcrel,
96               enum reloc_type r_type
97 #ifdef PIC
98               ,symbolS *got_symbol);
99 #else
100               );
101 #endif
102
103 #else /* not __STDC__ */
104
105 bit_fixS *bit_fix_new();
106 fixS *fix_new();
107 void append();
108 void record_alignment();
109 void write_object_file();
110
111 #endif /* not __STDC__ */
112
113 /*
114  * Local Variables:
115  * comment-column: 0
116  * fill-column: 131
117  * End:
118  */
119
120 /* end of write.h */