1 /* subsegs.c - subsegments -
2 Copyright (C) 1987, 1990, 1991, 1992 Free Software Foundation, Inc.
4 This file is part of GAS, the GNU Assembler.
6 GAS is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GAS is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 * Segments & sub-segments.
30 segment_info_type segment_info[SEG_MAXIMUM_ORDINAL];
32 frchainS* frchain_root,
36 frchainS* frchain_root,
37 * frchain_now, /* Commented in "subsegs.h". */
41 char * const /* in: segT out: char* */
45 "e0","e1","e2","e3","e4","e5","e6","e7","e8","e9",
54 "ASSEMBLER-INTERNAL-LOGIC-ERROR!",
58 "transfert vector preload",
59 "transfert vector postload",
62 }; /* Used by error reporters, dumpers etc. */
68 /* Check table(s) seg_name[], seg_N_TYPE[] is in correct order */
71 know( SEG_ABSOLUTE == 0 );
72 know( SEG_TEXT == 1 );
73 know( SEG_DATA == 2 );
75 know( SEG_UNKNOWN == 4 );
76 know( SEG_ABSENT == 5 );
77 know( SEG_PASS1 == 6 );
78 know( SEG_GOOF == 7 );
80 know( SEG_DIFFERENCE == 9 );
81 know( SEG_DEBUG == 10 );
82 know( SEG_NTV == 11 );
83 know( SEG_PTV == 12 );
84 know( SEG_REGISTER == 13 );
85 know( SEG_MAXIMUM_ORDINAL == SEG_REGISTER );
86 /* know( segment_name (SEG_MAXIMUM_ORDINAL + 1) [0] == 0 );*/
89 obstack_begin( &frags, 5000);
91 frchain_now = NULL; /* Warn new_subseg() that we are booting. */
92 /* Fake up 1st frag. */
93 /* It won't be used=> is ok if obstack... */
94 /* pads the end of it for alignment. */
95 frag_now=(fragS *)obstack_alloc(&frags,SIZEOF_STRUCT_FRAG);
96 memset(frag_now, SIZEOF_STRUCT_FRAG, 0);
97 /* This 1st frag will not be in any frchain. */
98 /* We simply give subseg_new somewhere to scribble. */
99 now_subseg = 42; /* Lie for 1st call to subseg_new. */
103 for (i = SEG_E0; i < SEG_UNKNOWN; i++) {
105 segment_info[i].frchainP = frchain_now;
109 subseg_new (SEG_DATA, 0); /* .data 0 */
110 data0_frchainP = frchain_now;
118 * Change the subsegment we are in, BUT DO NOT MAKE A NEW FRAG for the
119 * subsegment. If we are already in the correct subsegment, change nothing.
120 * This is used eg as a worker for subseg_new [which does make a new frag_now]
121 * and for changing segments after we have read the source. We construct eg
122 * fixSs even after the source file is read, so we do have to keep the
123 * segment context correct.
126 subseg_change (seg, subseg)
133 seg_fix_rootP = & segment_info[seg].fix_root;
134 seg_fix_tailP = & segment_info[seg].fix_tail;
138 seg_fix_rootP = & data_fix_root;
139 seg_fix_tailP = & data_fix_tail;
141 else if (seg == SEG_TEXT)
143 seg_fix_rootP = & text_fix_root;
144 seg_fix_tailP = & text_fix_tail;
147 know (seg == SEG_BSS);
148 seg_fix_rootP = & bss_fix_root;
149 seg_fix_tailP = & bss_fix_tail;
157 * If you attempt to change to the current subsegment, nothing happens.
159 * In: segT, subsegT code for new subsegment.
160 * frag_now -> incomplete frag for current subsegment.
161 * If frag_now==NULL, then there is no old, incomplete frag, so
162 * the old frag is not closed off.
164 * Out: now_subseg, now_seg updated.
165 * Frchain_now points to the (possibly new) struct frchain for this
167 * Frchain_root updated if needed.
171 subseg_new (seg, subseg) /* begin assembly for a new sub-segment */
172 register segT seg; /* SEG_DATA or SEG_TEXT */
173 register subsegT subseg;
175 long tmp; /* JF for obstack alignment hacking */
176 #ifndef MANY_SEGMENTS
177 know(seg == SEG_DATA || seg == SEG_TEXT || seg == SEG_BSS);
180 /* If -R specifed, always put stuff into the data section */
190 if (seg != now_seg || subseg != now_subseg)
191 { /* we just changed sub-segments */
192 register frchainS * frcP; /* crawl frchain chain */
193 register frchainS** lastPP; /* address of last pointer */
194 frchainS * newP; /* address of new frchain */
195 register fragS * former_last_fragP;
196 register fragS * new_fragP;
198 if (frag_now) /* If not bootstrapping. */
200 frag_now -> fr_fix = obstack_next_free(& frags) - frag_now -> fr_literal;
201 frag_wane(frag_now); /* Close off any frag in old subseg. */
204 * It would be nice to keep an obstack for each subsegment, if we swap
205 * subsegments a lot. Hence we would have much fewer frag_wanes().
209 obstack_finish( &frags);
211 * If we don't do the above, the next object we put on obstack frags
212 * will appear to start at the fr_literal of the current frag.
213 * Also, above ensures that the next object will begin on a
214 * address that is aligned correctly for the engine that runs
218 subseg_change (seg, (int)subseg);
220 * Attempt to find or make a frchain for that sub seg.
221 * Crawl along chain of frchainSs, begins @ frchain_root.
222 * If we need to make a frchainS, link it into correct
223 * position of chain rooted in frchain_root.
225 for (frcP = * (lastPP = & frchain_root);
227 && (int)(frcP -> frch_seg) <= (int)seg;
228 frcP = * ( lastPP = & frcP -> frch_next)
231 if ( (int)(frcP -> frch_seg) == (int)seg
232 && frcP -> frch_subseg >= subseg)
238 * frcP: Address of the 1st frchainS in correct segment with
239 * frch_subseg >= subseg.
240 * We want to either use this frchainS, or we want
241 * to insert a new frchainS just before it.
243 * If frcP==NULL, then we are at the end of the chain
244 * of frchainS-s. A NULL frcP means we fell off the end
245 * of the chain looking for a
246 * frch_subseg >= subseg, so we
247 * must make a new frchainS.
249 * If we ever maintain a pointer to
250 * the last frchainS in the chain, we change that pointer
251 * ONLY when frcP==NULL.
253 * lastPP: Address of the pointer with value frcP;
255 * May point to frchain_root.
259 || ( (int)(frcP -> frch_seg) > (int)seg
260 || frcP->frch_subseg > subseg)) /* Kinky logic only works with 2 segments. */
263 * This should be the only code that creates a frchainS.
265 newP=(frchainS *)obstack_alloc(&frags,sizeof(frchainS));
266 memset(newP, sizeof(frchainS), 0);
267 /* This begines on a good boundary */
268 /* because a obstack_done() preceeded it. */
269 /* It implies an obstack_done(), so we */
270 /* expect the next object allocated to */
271 /* begin on a correct boundary. */
273 newP -> frch_next = frcP; /* perhaps NULL */
274 (frcP = newP) -> frch_subseg = subseg;
275 newP -> frch_seg = seg;
276 newP -> frch_last = NULL;
279 * Here with frcP ->ing to the frchainS for subseg.
283 * Make a fresh frag for the subsegment.
285 /* We expect this to happen on a correct */
286 /* boundary since it was proceeded by a */
287 /* obstack_done(). */
288 tmp=obstack_alignment_mask(&frags); /* JF disable alignment */
289 obstack_alignment_mask(&frags)=0;
290 frag_now=(fragS *)obstack_alloc(&frags,SIZEOF_STRUCT_FRAG);
291 obstack_alignment_mask(&frags)=tmp;
292 /* know( frags . obstack_c_next_free == frag_now -> fr_literal ); */
293 /* But we want any more chars to come */
294 /* immediately after the structure we just made. */
295 new_fragP = frag_now;
296 new_fragP -> fr_next = NULL;
298 * Append new frag to current frchain.
300 former_last_fragP = frcP -> frch_last;
301 if (former_last_fragP)
303 know( former_last_fragP -> fr_next == NULL );
304 know( frchain_now -> frch_root );
305 former_last_fragP -> fr_next = new_fragP;
309 frcP -> frch_root = new_fragP;
311 frcP -> frch_last = new_fragP;
312 } /* if (changing subsegments) */
322 /* end of subsegs.c */