Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. /* frags.c - manage frags -
  2.    Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
  3.    1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012
  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 3, 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, 51 Franklin Street - Fifth Floor, Boston, MA
  21.    02110-1301, USA.  */
  22.  
  23. #include "as.h"
  24. #include "subsegs.h"
  25. #include "obstack.h"
  26.  
  27. extern fragS zero_address_frag;
  28. extern fragS predefined_address_frag;
  29. /* Initialization for frag routines.  */
  30.  
  31. void
  32. frag_init (void)
  33. {
  34.   zero_address_frag.fr_type = rs_fill;
  35.   predefined_address_frag.fr_type = rs_fill;
  36. }
  37. /* Check that we're not trying to assemble into a section that can't
  38.    allocate frags (currently, this is only possible in the absolute
  39.    section), or into an mri common.  */
  40.  
  41. static void
  42. frag_alloc_check (const struct obstack *ob)
  43. {
  44.   if (ob->chunk_size == 0)
  45.     {
  46.       as_bad (_("attempt to allocate data in absolute section"));
  47.       subseg_set (text_section, 0);
  48.     }
  49.  
  50.   if (mri_common_symbol != NULL)
  51.     {
  52.       as_bad (_("attempt to allocate data in common section"));
  53.       mri_common_symbol = NULL;
  54.     }
  55. }
  56.  
  57. /* Allocate a frag on the specified obstack.
  58.    Call this routine from everywhere else, so that all the weird alignment
  59.    hackery can be done in just one place.  */
  60.  
  61. fragS *
  62. frag_alloc (struct obstack *ob)
  63. {
  64.   fragS *ptr;
  65.   int oalign;
  66.  
  67.   (void) obstack_alloc (ob, 0);
  68.   oalign = obstack_alignment_mask (ob);
  69.   obstack_alignment_mask (ob) = 0;
  70.   ptr = (fragS *) obstack_alloc (ob, SIZEOF_STRUCT_FRAG);
  71.   obstack_alignment_mask (ob) = oalign;
  72.   memset (ptr, 0, SIZEOF_STRUCT_FRAG);
  73.   return ptr;
  74. }
  75. /* Try to augment current frag by nchars chars.
  76.    If there is no room, close of the current frag with a ".fill 0"
  77.    and begin a new frag. Unless the new frag has nchars chars available
  78.    do not return. Do not set up any fields of *now_frag.  */
  79.  
  80. void
  81. frag_grow (unsigned int nchars)
  82. {
  83.   if (obstack_room (&frchain_now->frch_obstack) < nchars)
  84.     {
  85.       long oldc;
  86.       long newc;
  87.  
  88.       /* Try to allocate a bit more than needed right now.  But don't do
  89.          this if we would waste too much memory.  Especially necessary
  90.          for extremely big (like 2GB initialized) frags.  */
  91.       if (nchars < 0x10000)
  92.         newc = 2 * nchars;
  93.       else
  94.         newc = nchars + 0x10000;
  95.       newc += SIZEOF_STRUCT_FRAG;
  96.  
  97.       /* Check for possible overflow.  */
  98.       if (newc < 0)
  99.         as_fatal (_("can't extend frag %u chars"), nchars);
  100.  
  101.       /* Force to allocate at least NEWC bytes, but not less than the
  102.          default.  */
  103.       oldc = obstack_chunk_size (&frchain_now->frch_obstack);
  104.       if (newc > oldc)
  105.         obstack_chunk_size (&frchain_now->frch_obstack) = newc;
  106.  
  107.       while (obstack_room (&frchain_now->frch_obstack) < nchars)
  108.         {
  109.           /* Not enough room in this frag.  Close it and start a new one.
  110.              This must be done in a loop because the created frag may not
  111.              be big enough if the current obstack chunk is used.  */
  112.           frag_wane (frag_now);
  113.           frag_new (0);
  114.         }
  115.  
  116.       /* Restore the old chunk size.  */
  117.       obstack_chunk_size (&frchain_now->frch_obstack) = oldc;
  118.     }
  119. }
  120. /* Call this to close off a completed frag, and start up a new (empty)
  121.    frag, in the same subsegment as the old frag.
  122.    [frchain_now remains the same but frag_now is updated.]
  123.    Because this calculates the correct value of fr_fix by
  124.    looking at the obstack 'frags', it needs to know how many
  125.    characters at the end of the old frag belong to the maximal
  126.    variable part;  The rest must belong to fr_fix.
  127.    It doesn't actually set up the old frag's fr_var.  You may have
  128.    set fr_var == 1, but allocated 10 chars to the end of the frag;
  129.    In this case you pass old_frags_var_max_size == 10.
  130.    In fact, you may use fr_var for something totally unrelated to the
  131.    size of the variable part of the frag;  None of the generic frag
  132.    handling code makes use of fr_var.
  133.  
  134.    Make a new frag, initialising some components. Link new frag at end
  135.    of frchain_now.  */
  136.  
  137. void
  138. frag_new (int old_frags_var_max_size
  139.           /* Number of chars (already allocated on obstack frags) in
  140.              variable_length part of frag.  */)
  141. {
  142.   fragS *former_last_fragP;
  143.   frchainS *frchP;
  144.  
  145.   gas_assert (frchain_now->frch_last == frag_now);
  146.  
  147.   /* Fix up old frag's fr_fix.  */
  148.   frag_now->fr_fix = frag_now_fix_octets () - old_frags_var_max_size;
  149.   /* Make sure its type is valid.  */
  150.   gas_assert (frag_now->fr_type != 0);
  151.  
  152.   /* This will align the obstack so the next struct we allocate on it
  153.      will begin at a correct boundary.  */
  154.   obstack_finish (&frchain_now->frch_obstack);
  155.   frchP = frchain_now;
  156.   know (frchP);
  157.   former_last_fragP = frchP->frch_last;
  158.   gas_assert (former_last_fragP != 0);
  159.   gas_assert (former_last_fragP == frag_now);
  160.   frag_now = frag_alloc (&frchP->frch_obstack);
  161.  
  162.   as_where (&frag_now->fr_file, &frag_now->fr_line);
  163.  
  164.   /* Generally, frag_now->points to an address rounded up to next
  165.      alignment.  However, characters will add to obstack frags
  166.      IMMEDIATELY after the struct frag, even if they are not starting
  167.      at an alignment address.  */
  168.   former_last_fragP->fr_next = frag_now;
  169.   frchP->frch_last = frag_now;
  170.  
  171. #ifndef NO_LISTING
  172.   {
  173.     extern struct list_info_struct *listing_tail;
  174.     frag_now->line = listing_tail;
  175.   }
  176. #endif
  177.  
  178.   gas_assert (frchain_now->frch_last == frag_now);
  179.  
  180.   frag_now->fr_next = NULL;
  181. }
  182. /* Start a new frag unless we have n more chars of room in the current frag.
  183.    Close off the old frag with a .fill 0.
  184.  
  185.    Return the address of the 1st char to write into. Advance
  186.    frag_now_growth past the new chars.  */
  187.  
  188. char *
  189. frag_more (int nchars)
  190. {
  191.   register char *retval;
  192.  
  193.   frag_alloc_check (&frchain_now->frch_obstack);
  194.   frag_grow (nchars);
  195.   retval = obstack_next_free (&frchain_now->frch_obstack);
  196.   obstack_blank_fast (&frchain_now->frch_obstack, nchars);
  197.   return (retval);
  198. }
  199. /* Close the current frag, setting its fields for a relaxable frag.  Start a
  200.    new frag.  */
  201.  
  202. static void
  203. frag_var_init (relax_stateT type, int max_chars, int var,
  204.                relax_substateT subtype, symbolS *symbol, offsetT offset,
  205.                char *opcode)
  206. {
  207.   frag_now->fr_var = var;
  208.   frag_now->fr_type = type;
  209.   frag_now->fr_subtype = subtype;
  210.   frag_now->fr_symbol = symbol;
  211.   frag_now->fr_offset = offset;
  212.   frag_now->fr_opcode = opcode;
  213. #ifdef USING_CGEN
  214.   frag_now->fr_cgen.insn = 0;
  215.   frag_now->fr_cgen.opindex = 0;
  216.   frag_now->fr_cgen.opinfo = 0;
  217. #endif
  218. #ifdef TC_FRAG_INIT
  219.   TC_FRAG_INIT (frag_now);
  220. #endif
  221.   as_where (&frag_now->fr_file, &frag_now->fr_line);
  222.  
  223.   frag_new (max_chars);
  224. }
  225.  
  226. /* Start a new frag unless we have max_chars more chars of room in the
  227.    current frag.  Close off the old frag with a .fill 0.
  228.  
  229.    Set up a machine_dependent relaxable frag, then start a new frag.
  230.    Return the address of the 1st char of the var part of the old frag
  231.    to write into.  */
  232.  
  233. char *
  234. frag_var (relax_stateT type, int max_chars, int var, relax_substateT subtype,
  235.           symbolS *symbol, offsetT offset, char *opcode)
  236. {
  237.   register char *retval;
  238.  
  239.   frag_grow (max_chars);
  240.   retval = obstack_next_free (&frchain_now->frch_obstack);
  241.   obstack_blank_fast (&frchain_now->frch_obstack, max_chars);
  242.   frag_var_init (type, max_chars, var, subtype, symbol, offset, opcode);
  243.   return retval;
  244. }
  245. /* OVE: This variant of frag_var assumes that space for the tail has been
  246.         allocated by caller.
  247.         No call to frag_grow is done.  */
  248.  
  249. char *
  250. frag_variant (relax_stateT type, int max_chars, int var,
  251.               relax_substateT subtype, symbolS *symbol, offsetT offset,
  252.               char *opcode)
  253. {
  254.   register char *retval;
  255.  
  256.   retval = obstack_next_free (&frchain_now->frch_obstack);
  257.   frag_var_init (type, max_chars, var, subtype, symbol, offset, opcode);
  258.  
  259.   return retval;
  260. }
  261. /* Reduce the variable end of a frag to a harmless state.  */
  262.  
  263. void
  264. frag_wane (register fragS *fragP)
  265. {
  266.   fragP->fr_type = rs_fill;
  267.   fragP->fr_offset = 0;
  268.   fragP->fr_var = 0;
  269. }
  270. /* Return the number of bytes by which the current frag can be grown.  */
  271.  
  272. int
  273. frag_room (void)
  274. {
  275.   return obstack_room (&frchain_now->frch_obstack);
  276. }
  277. /* Make an alignment frag.  The size of this frag will be adjusted to
  278.    force the next frag to have the appropriate alignment.  ALIGNMENT
  279.    is the power of two to which to align.  FILL_CHARACTER is the
  280.    character to use to fill in any bytes which are skipped.  MAX is
  281.    the maximum number of characters to skip when doing the alignment,
  282.    or 0 if there is no maximum.  */
  283.  
  284. void
  285. frag_align (int alignment, int fill_character, int max)
  286. {
  287.   if (now_seg == absolute_section)
  288.     {
  289.       addressT new_off;
  290.       addressT mask;
  291.  
  292.       mask = (~(addressT) 0) << alignment;
  293.       new_off = (abs_section_offset + ~mask) & mask;
  294.       if (max == 0 || new_off - abs_section_offset <= (addressT) max)
  295.         abs_section_offset = new_off;
  296.     }
  297.   else
  298.     {
  299.       char *p;
  300.  
  301.       p = frag_var (rs_align, 1, 1, (relax_substateT) max,
  302.                     (symbolS *) 0, (offsetT) alignment, (char *) 0);
  303.       *p = fill_character;
  304.     }
  305. }
  306.  
  307. /* Make an alignment frag like frag_align, but fill with a repeating
  308.    pattern rather than a single byte.  ALIGNMENT is the power of two
  309.    to which to align.  FILL_PATTERN is the fill pattern to repeat in
  310.    the bytes which are skipped.  N_FILL is the number of bytes in
  311.    FILL_PATTERN.  MAX is the maximum number of characters to skip when
  312.    doing the alignment, or 0 if there is no maximum.  */
  313.  
  314. void
  315. frag_align_pattern (int alignment, const char *fill_pattern,
  316.                     int n_fill, int max)
  317. {
  318.   char *p;
  319.  
  320.   p = frag_var (rs_align, n_fill, n_fill, (relax_substateT) max,
  321.                 (symbolS *) 0, (offsetT) alignment, (char *) 0);
  322.   memcpy (p, fill_pattern, n_fill);
  323. }
  324.  
  325. /* The NOP_OPCODE is for the alignment fill value.  Fill it with a nop
  326.    instruction so that the disassembler does not choke on it.  */
  327. #ifndef NOP_OPCODE
  328. #define NOP_OPCODE 0x00
  329. #endif
  330.  
  331. /* Use this to restrict the amount of memory allocated for representing
  332.    the alignment code.  Needs to be large enough to hold any fixed sized
  333.    prologue plus the replicating portion.  */
  334. #ifndef MAX_MEM_FOR_RS_ALIGN_CODE
  335.   /* Assume that if HANDLE_ALIGN is not defined then no special action
  336.      is required to code fill, which means that we get just repeat the
  337.      one NOP_OPCODE byte.  */
  338. # ifndef HANDLE_ALIGN
  339. #  define MAX_MEM_FOR_RS_ALIGN_CODE  1
  340. # else
  341. #  define MAX_MEM_FOR_RS_ALIGN_CODE  ((1 << alignment) - 1)
  342. # endif
  343. #endif
  344.  
  345. void
  346. frag_align_code (int alignment, int max)
  347. {
  348.   char *p;
  349.  
  350.   p = frag_var (rs_align_code, MAX_MEM_FOR_RS_ALIGN_CODE, 1,
  351.                 (relax_substateT) max, (symbolS *) 0,
  352.                 (offsetT) alignment, (char *) 0);
  353.   *p = NOP_OPCODE;
  354. }
  355.  
  356. addressT
  357. frag_now_fix_octets (void)
  358. {
  359.   if (now_seg == absolute_section)
  360.     return abs_section_offset;
  361.  
  362.   return ((char *) obstack_next_free (&frchain_now->frch_obstack)
  363.           - frag_now->fr_literal);
  364. }
  365.  
  366. addressT
  367. frag_now_fix (void)
  368. {
  369.   return frag_now_fix_octets () / OCTETS_PER_BYTE;
  370. }
  371.  
  372. void
  373. frag_append_1_char (int datum)
  374. {
  375.   frag_alloc_check (&frchain_now->frch_obstack);
  376.   if (obstack_room (&frchain_now->frch_obstack) <= 1)
  377.     {
  378.       frag_wane (frag_now);
  379.       frag_new (0);
  380.     }
  381.   obstack_1grow (&frchain_now->frch_obstack, datum);
  382. }
  383.  
  384. /* Return TRUE if FRAG1 and FRAG2 have a fixed relationship between
  385.    their start addresses.  Set OFFSET to the difference in address
  386.    not already accounted for in the frag FR_ADDRESS.  */
  387.  
  388. bfd_boolean
  389. frag_offset_fixed_p (const fragS *frag1, const fragS *frag2, offsetT *offset)
  390. {
  391.   const fragS *frag;
  392.   offsetT off;
  393.  
  394.   /* Start with offset initialised to difference between the two frags.
  395.      Prior to assigning frag addresses this will be zero.  */
  396.   off = frag1->fr_address - frag2->fr_address;
  397.   if (frag1 == frag2)
  398.     {
  399.       *offset = off;
  400.       return TRUE;
  401.     }
  402.  
  403.   /* Maybe frag2 is after frag1.  */
  404.   frag = frag1;
  405.   while (frag->fr_type == rs_fill)
  406.     {
  407.       off += frag->fr_fix + frag->fr_offset * frag->fr_var;
  408.       frag = frag->fr_next;
  409.       if (frag == NULL)
  410.         break;
  411.       if (frag == frag2)
  412.         {
  413.           *offset = off;
  414.           return TRUE;
  415.         }
  416.     }
  417.  
  418.   /* Maybe frag1 is after frag2.  */
  419.   off = frag1->fr_address - frag2->fr_address;
  420.   frag = frag2;
  421.   while (frag->fr_type == rs_fill)
  422.     {
  423.       off -= frag->fr_fix + frag->fr_offset * frag->fr_var;
  424.       frag = frag->fr_next;
  425.       if (frag == NULL)
  426.         break;
  427.       if (frag == frag1)
  428.         {
  429.           *offset = off;
  430.           return TRUE;
  431.         }
  432.     }
  433.  
  434.   return FALSE;
  435. }
  436.