Subversion Repositories Kolibri OS

Rev

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

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