home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / binutils-2.7-src.tgz / tar.out / fsf / binutils / gas / frags.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  9KB  |  341 lines

  1. /* frags.c - manage frags -
  2.    Copyright (C) 1987, 90, 91, 92, 93, 94, 95, 1996
  3.    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, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  20.  
  21. #include "as.h"
  22. #include "subsegs.h"
  23. #include "obstack.h"
  24.  
  25. extern fragS zero_address_frag;
  26. extern fragS bss_address_frag;
  27.  
  28. /* Initialization for frag routines.  */
  29. void
  30. frag_init ()
  31. {
  32.   zero_address_frag.fr_type = rs_fill;
  33.   bss_address_frag.fr_type = rs_fill;
  34. }
  35.  
  36. /* Allocate a frag on the specified obstack.
  37.    Call this routine from everywhere else, so that all the weird alignment
  38.    hackery can be done in just one place.  */
  39. fragS *
  40. frag_alloc (ob)
  41.      struct obstack *ob;
  42. {
  43.   fragS *ptr;
  44.   int oalign;
  45.  
  46.   (void) obstack_alloc (ob, 0);
  47.   oalign = obstack_alignment_mask (ob);
  48.   obstack_alignment_mask (ob) = 0;
  49.   ptr = (fragS *) obstack_alloc (ob, SIZEOF_STRUCT_FRAG);
  50.   obstack_alignment_mask (ob) = oalign;
  51.   memset (ptr, 0, SIZEOF_STRUCT_FRAG);
  52.   return ptr;
  53. }
  54.  
  55. /*
  56.  *            frag_grow()
  57.  *
  58.  * Try to augment current frag by nchars chars.
  59.  * If there is no room, close of the current frag with a ".fill 0"
  60.  * and begin a new frag. Unless the new frag has nchars chars available
  61.  * do not return. Do not set up any fields of *now_frag.
  62.  */
  63. void 
  64. frag_grow (nchars)
  65.      unsigned int nchars;
  66. {
  67.   if (obstack_room (&frchain_now->frch_obstack) < nchars)
  68.     {
  69.       unsigned int n, oldn;
  70.       long oldc;
  71.  
  72.       frag_wane (frag_now);
  73.       frag_new (0);
  74.       oldn = (unsigned) -1;
  75.       oldc = frchain_now->frch_obstack.chunk_size;
  76.       frchain_now->frch_obstack.chunk_size = 2 * nchars;
  77.       while ((n = obstack_room (&frchain_now->frch_obstack)) < nchars
  78.          && n < oldn)
  79.     {
  80.       frag_wane (frag_now);
  81.       frag_new (0);
  82.       oldn = n;
  83.     }
  84.       frchain_now->frch_obstack.chunk_size = oldc;
  85.     }
  86.   if (obstack_room (&frchain_now->frch_obstack) < nchars)
  87.     as_fatal ("Can't extend frag %d. chars", nchars);
  88. }
  89.  
  90. /*
  91.  *            frag_new()
  92.  *
  93.  * Call this to close off a completed frag, and start up a new (empty)
  94.  * frag, in the same subsegment as the old frag.
  95.  * [frchain_now remains the same but frag_now is updated.]
  96.  * Because this calculates the correct value of fr_fix by
  97.  * looking at the obstack 'frags', it needs to know how many
  98.  * characters at the end of the old frag belong to (the maximal)
  99.  * fr_var: the rest must belong to fr_fix.
  100.  * It doesn't actually set up the old frag's fr_var: you may have
  101.  * set fr_var == 1, but allocated 10 chars to the end of the frag:
  102.  * in this case you pass old_frags_var_max_size == 10.
  103.  *
  104.  * Make a new frag, initialising some components. Link new frag at end
  105.  * of frchain_now.
  106.  */
  107. void 
  108. frag_new (old_frags_var_max_size)
  109.      /* Number of chars (already allocated on obstack frags) in
  110.     variable_length part of frag. */
  111.      int old_frags_var_max_size;
  112. {
  113.   fragS *former_last_fragP;
  114.   frchainS *frchP;
  115.  
  116.   assert (frchain_now->frch_last == frag_now);
  117.  
  118.   /* Fix up old frag's fr_fix.  */
  119.   frag_now->fr_fix = frag_now_fix () - old_frags_var_max_size;
  120.   /* Make sure its type is valid.  */
  121.   assert (frag_now->fr_type != 0);
  122.  
  123.   /* This will align the obstack so the next struct we allocate on it
  124.      will begin at a correct boundary. */
  125.   obstack_finish (&frchain_now->frch_obstack);
  126.   frchP = frchain_now;
  127.   know (frchP);
  128.   former_last_fragP = frchP->frch_last;
  129.   assert (former_last_fragP != 0);
  130.   assert (former_last_fragP == frag_now);
  131.   frag_now = frag_alloc (&frchP->frch_obstack);
  132.  
  133.   as_where (&frag_now->fr_file, &frag_now->fr_line);
  134.  
  135.   /* Generally, frag_now->points to an address rounded up to next
  136.      alignment.  However, characters will add to obstack frags
  137.      IMMEDIATELY after the struct frag, even if they are not starting
  138.      at an alignment address. */
  139.   former_last_fragP->fr_next = frag_now;
  140.   frchP->frch_last = frag_now;
  141.  
  142. #ifndef NO_LISTING
  143.   {
  144.     extern struct list_info_struct *listing_tail;
  145.     frag_now->line = listing_tail;
  146.   }
  147. #endif
  148.  
  149.   assert (frchain_now->frch_last == frag_now);
  150.  
  151.   frag_now->fr_next = NULL;
  152. }                /* frag_new() */
  153.  
  154. /*
  155.  *            frag_more()
  156.  *
  157.  * Start a new frag unless we have n more chars of room in the current frag.
  158.  * Close off the old frag with a .fill 0.
  159.  *
  160.  * Return the address of the 1st char to write into. Advance
  161.  * frag_now_growth past the new chars.
  162.  */
  163.  
  164. char *
  165. frag_more (nchars)
  166.      int nchars;
  167. {
  168.   register char *retval;
  169.  
  170.   if (now_seg == absolute_section)
  171.     {
  172.       as_bad ("attempt to allocate data in absolute section");
  173.       subseg_set (text_section, 0);
  174.     }
  175.  
  176.   if (mri_common_symbol != NULL)
  177.     {
  178.       as_bad ("attempt to allocate data in common section");
  179.       mri_common_symbol = NULL;
  180.     }
  181.  
  182.   frag_grow (nchars);
  183.   retval = obstack_next_free (&frchain_now->frch_obstack);
  184.   obstack_blank_fast (&frchain_now->frch_obstack, nchars);
  185.   return (retval);
  186. }                /* frag_more() */
  187.  
  188. /*
  189.  *            frag_var()
  190.  *
  191.  * Start a new frag unless we have max_chars more chars of room in the current frag.
  192.  * Close off the old frag with a .fill 0.
  193.  *
  194.  * Set up a machine_dependent relaxable frag, then start a new frag.
  195.  * Return the address of the 1st char of the var part of the old frag
  196.  * to write into.
  197.  */
  198.  
  199. char *
  200. frag_var (type, max_chars, var, subtype, symbol, offset, opcode)
  201.      relax_stateT type;
  202.      int max_chars;
  203.      int var;
  204.      relax_substateT subtype;
  205.      symbolS *symbol;
  206.      long offset;
  207.      char *opcode;
  208. {
  209.   register char *retval;
  210.  
  211.   frag_grow (max_chars);
  212.   retval = obstack_next_free (&frchain_now->frch_obstack);
  213.   obstack_blank_fast (&frchain_now->frch_obstack, max_chars);
  214.   frag_now->fr_var = var;
  215.   frag_now->fr_type = type;
  216.   frag_now->fr_subtype = subtype;
  217.   frag_now->fr_symbol = symbol;
  218.   frag_now->fr_offset = offset;
  219.   frag_now->fr_opcode = opcode;
  220.   /* default these to zero. */
  221.   frag_now->fr_pcrel_adjust = 0;
  222.   frag_now->fr_bsr = 0;
  223.   as_where (&frag_now->fr_file, &frag_now->fr_line);
  224.   frag_new (max_chars);
  225.   return (retval);
  226. }
  227.  
  228. /*
  229.  *            frag_variant()
  230.  *
  231.  * OVE: This variant of frag_var assumes that space for the tail has been
  232.  *      allocated by caller.
  233.  *      No call to frag_grow is done.
  234.  *      Two new arguments have been added.
  235.  */
  236.  
  237. char *
  238. frag_variant (type, max_chars, var, subtype, symbol, offset, opcode)
  239.      relax_stateT type;
  240.      int max_chars;
  241.      int var;
  242.      relax_substateT subtype;
  243.      symbolS *symbol;
  244.      long offset;
  245.      char *opcode;
  246. {
  247.   register char *retval;
  248.  
  249.   retval = obstack_next_free (&frchain_now->frch_obstack);
  250.   frag_now->fr_var = var;
  251.   frag_now->fr_type = type;
  252.   frag_now->fr_subtype = subtype;
  253.   frag_now->fr_symbol = symbol;
  254.   frag_now->fr_offset = offset;
  255.   frag_now->fr_opcode = opcode;
  256.   /* default these to zero. */
  257.   frag_now->fr_pcrel_adjust = 0;
  258.   frag_now->fr_bsr = 0;
  259.   as_where (&frag_now->fr_file, &frag_now->fr_line);
  260.   frag_new (max_chars);
  261.   return (retval);
  262. }                /* frag_variant() */
  263.  
  264. /*
  265.  *            frag_wane()
  266.  *
  267.  * Reduce the variable end of a frag to a harmless state.
  268.  */
  269. void 
  270. frag_wane (fragP)
  271.      register fragS *fragP;
  272. {
  273.   fragP->fr_type = rs_fill;
  274.   fragP->fr_offset = 0;
  275.   fragP->fr_var = 0;
  276. }
  277.  
  278. /* Make an alignment frag.  The size of this frag will be adjusted to
  279.    force the next frag to have the appropriate alignment.  ALIGNMENT
  280.    is the power of two to which to align.  FILL_CHARACTER is the
  281.    character to use to fill in any bytes which are skipped.  */
  282.  
  283. void 
  284. frag_align (alignment, fill_character)
  285.      int alignment;
  286.      int fill_character;
  287. {
  288.   if (now_seg == absolute_section)
  289.     abs_section_offset = ((abs_section_offset + alignment - 1)
  290.               &~ ((1 << alignment) - 1));
  291.   else
  292.     {
  293.       char *p;
  294.  
  295.       p = frag_var (rs_align, 1, 1, (relax_substateT) 0,
  296.             (symbolS *) 0, (long) alignment, (char *) 0);
  297.       *p = fill_character;
  298.     }
  299. }
  300.  
  301. /* Make an alignment frag like frag_align, but fill with a repeating
  302.    pattern rather than a single byte.  ALIGNMENT is the power of two
  303.    to which to align.  FILL_PATTERN is the fill pattern to repeat in
  304.    the bytes which are skipped.  N_FILL is the number of bytes in
  305.    FILL_PATTERN.  */
  306.  
  307. void 
  308. frag_align_pattern (alignment, fill_pattern, n_fill)
  309.      int alignment;
  310.      const char *fill_pattern;
  311.      int n_fill;
  312. {
  313.   char *p;
  314.   p = frag_var (rs_align, n_fill, n_fill, (relax_substateT) 0,
  315.         (symbolS *) 0, (long) alignment, (char *) 0);
  316.   memcpy (p, fill_pattern, n_fill);
  317. }
  318.  
  319. int
  320. frag_now_fix ()
  321. {
  322.   if (now_seg == absolute_section)
  323.     return abs_section_offset;
  324.   return ((char*)obstack_next_free (&frchain_now->frch_obstack)
  325.       - frag_now->fr_literal);
  326. }
  327.  
  328. void
  329. frag_append_1_char (datum)
  330.      int datum;
  331. {
  332.   if (obstack_room (&frchain_now->frch_obstack) <= 1)
  333.     {
  334.       frag_wane (frag_now);
  335.       frag_new (0);
  336.     }
  337.   obstack_1grow (&frchain_now->frch_obstack, datum);
  338. }
  339.  
  340. /* end of frags.c */
  341.