source: trunk/binutils/gas/frags.c@ 3032

Last change on this file since 3032 was 610, checked in by bird, 22 years ago

This commit was generated by cvs2svn to compensate for changes in r609,
which included commits to RCS files with non-trunk default branches.

  • Property cvs2svn:cvs-rev set to 1.1.1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 10.8 KB
Line 
1/* frags.c - manage frags -
2 Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000
4 Free Software Foundation, Inc.
5
6 This file is part of GAS, the GNU Assembler.
7
8 GAS is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GAS is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GAS; see the file COPYING. If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21 02111-1307, USA. */
22
23#include "as.h"
24#include "subsegs.h"
25#include "obstack.h"
26
27extern fragS zero_address_frag;
28extern fragS bss_address_frag;
29
30
31/* Initialization for frag routines. */
32
33void
34frag_init ()
35{
36 zero_address_frag.fr_type = rs_fill;
37 bss_address_frag.fr_type = rs_fill;
38}
39
40
41/* Allocate a frag on the specified obstack.
42 Call this routine from everywhere else, so that all the weird alignment
43 hackery can be done in just one place. */
44
45fragS *
46frag_alloc (ob)
47 struct obstack *ob;
48{
49 fragS *ptr;
50 int oalign;
51
52 (void) obstack_alloc (ob, 0);
53 oalign = obstack_alignment_mask (ob);
54 obstack_alignment_mask (ob) = 0;
55 ptr = (fragS *) obstack_alloc (ob, SIZEOF_STRUCT_FRAG);
56 obstack_alignment_mask (ob) = oalign;
57 memset (ptr, 0, SIZEOF_STRUCT_FRAG);
58 return ptr;
59}
60
61
62/* Try to augment current frag by nchars chars.
63 If there is no room, close of the current frag with a ".fill 0"
64 and begin a new frag. Unless the new frag has nchars chars available
65 do not return. Do not set up any fields of *now_frag. */
66
67void
68frag_grow (nchars)
69 unsigned int nchars;
70{
71 if (obstack_room (&frchain_now->frch_obstack) < nchars)
72 {
73 unsigned int n;
74 long oldc;
75
76 frag_wane (frag_now);
77 frag_new (0);
78 oldc = frchain_now->frch_obstack.chunk_size;
79 frchain_now->frch_obstack.chunk_size = 2 * nchars + SIZEOF_STRUCT_FRAG;
80 if (frchain_now->frch_obstack.chunk_size > 0)
81 while ((n = obstack_room (&frchain_now->frch_obstack)) < nchars
82 && (unsigned long) frchain_now->frch_obstack.chunk_size > nchars)
83 {
84 frag_wane (frag_now);
85 frag_new (0);
86 }
87 frchain_now->frch_obstack.chunk_size = oldc;
88 }
89 if (obstack_room (&frchain_now->frch_obstack) < nchars)
90 as_fatal (_("can't extend frag %u chars"), nchars);
91}
92
93
94/* Call this to close off a completed frag, and start up a new (empty)
95 frag, in the same subsegment as the old frag.
96 [frchain_now remains the same but frag_now is updated.]
97 Because this calculates the correct value of fr_fix by
98 looking at the obstack 'frags', it needs to know how many
99 characters at the end of the old frag belong to the maximal
100 variable part; The rest must belong to fr_fix.
101 It doesn't actually set up the old frag's fr_var. You may have
102 set fr_var == 1, but allocated 10 chars to the end of the frag;
103 In this case you pass old_frags_var_max_size == 10.
104 In fact, you may use fr_var for something totally unrelated to the
105 size of the variable part of the frag; None of the generic frag
106 handling code makes use of fr_var.
107
108 Make a new frag, initialising some components. Link new frag at end
109 of frchain_now. */
110
111void
112frag_new (old_frags_var_max_size)
113 /* Number of chars (already allocated on obstack frags) in
114 variable_length part of frag. */
115 int old_frags_var_max_size;
116{
117 fragS *former_last_fragP;
118 frchainS *frchP;
119
120 assert (frchain_now->frch_last == frag_now);
121
122 /* Fix up old frag's fr_fix. */
123 frag_now->fr_fix = frag_now_fix_octets () - old_frags_var_max_size;
124 /* Make sure its type is valid. */
125 assert (frag_now->fr_type != 0);
126
127 /* This will align the obstack so the next struct we allocate on it
128 will begin at a correct boundary. */
129 obstack_finish (&frchain_now->frch_obstack);
130 frchP = frchain_now;
131 know (frchP);
132 former_last_fragP = frchP->frch_last;
133 assert (former_last_fragP != 0);
134 assert (former_last_fragP == frag_now);
135 frag_now = frag_alloc (&frchP->frch_obstack);
136
137 as_where (&frag_now->fr_file, &frag_now->fr_line);
138
139 /* Generally, frag_now->points to an address rounded up to next
140 alignment. However, characters will add to obstack frags
141 IMMEDIATELY after the struct frag, even if they are not starting
142 at an alignment address. */
143 former_last_fragP->fr_next = frag_now;
144 frchP->frch_last = frag_now;
145
146#ifndef NO_LISTING
147 {
148 extern struct list_info_struct *listing_tail;
149 frag_now->line = listing_tail;
150 }
151#endif
152
153 assert (frchain_now->frch_last == frag_now);
154
155 frag_now->fr_next = NULL;
156}
157
158
159/* Start a new frag unless we have n more chars of room in the current frag.
160 Close off the old frag with a .fill 0.
161
162 Return the address of the 1st char to write into. Advance
163 frag_now_growth past the new chars. */
164
165char *
166frag_more (nchars)
167 int nchars;
168{
169 register char *retval;
170
171 if (now_seg == absolute_section)
172 {
173 as_bad (_("attempt to allocate data in absolute section"));
174 subseg_set (text_section, 0);
175 }
176
177 if (mri_common_symbol != NULL)
178 {
179 as_bad (_("attempt to allocate data in common section"));
180 mri_common_symbol = NULL;
181 }
182
183 frag_grow (nchars);
184 retval = obstack_next_free (&frchain_now->frch_obstack);
185 obstack_blank_fast (&frchain_now->frch_obstack, nchars);
186 return (retval);
187}
188
189
190/* Start a new frag unless we have max_chars more chars of room in the
191 current frag. Close off the old frag with a .fill 0.
192
193 Set up a machine_dependent relaxable frag, then start a new frag.
194 Return the address of the 1st char of the var part of the old frag
195 to write into. */