OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [binutils-2.18.50/] [gas/] [cond.c] - Diff between revs 156 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 156 Rev 816
/* cond.c - conditional assembly pseudo-ops, and .include
/* cond.c - conditional assembly pseudo-ops, and .include
   Copyright 1990, 1991, 1992, 1993, 1995, 1997, 1998, 2000, 2001, 2002,
   Copyright 1990, 1991, 1992, 1993, 1995, 1997, 1998, 2000, 2001, 2002,
   2003, 2006, 2007 Free Software Foundation, Inc.
   2003, 2006, 2007 Free Software Foundation, Inc.
 
 
   This file is part of GAS, the GNU Assembler.
   This file is part of GAS, the GNU Assembler.
 
 
   GAS is free software; you can redistribute it and/or modify
   GAS is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   the Free Software Foundation; either version 3, or (at your option)
   any later version.
   any later version.
 
 
   GAS is distributed in the hope that it will be useful,
   GAS is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   GNU General Public License for more details.
 
 
   You should have received a copy of the GNU General Public License
   You should have received a copy of the GNU General Public License
   along with GAS; see the file COPYING.  If not, write to the Free
   along with GAS; see the file COPYING.  If not, write to the Free
   Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
   Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
   02110-1301, USA.  */
   02110-1301, USA.  */
 
 
#include "as.h"
#include "as.h"
#include "sb.h"
#include "sb.h"
#include "macro.h"
#include "macro.h"
 
 
#include "obstack.h"
#include "obstack.h"
 
 
/* This is allocated to grow and shrink as .ifdef/.endif pairs are
/* This is allocated to grow and shrink as .ifdef/.endif pairs are
   scanned.  */
   scanned.  */
struct obstack cond_obstack;
struct obstack cond_obstack;
 
 
struct file_line {
struct file_line {
  char *file;
  char *file;
  unsigned int line;
  unsigned int line;
};
};
 
 
/* We push one of these structures for each .if, and pop it at the
/* We push one of these structures for each .if, and pop it at the
   .endif.  */
   .endif.  */
 
 
struct conditional_frame {
struct conditional_frame {
  /* The source file & line number of the "if".  */
  /* The source file & line number of the "if".  */
  struct file_line if_file_line;
  struct file_line if_file_line;
  /* The source file & line of the "else".  */
  /* The source file & line of the "else".  */
  struct file_line else_file_line;
  struct file_line else_file_line;
  /* The previous conditional.  */
  /* The previous conditional.  */
  struct conditional_frame *previous_cframe;
  struct conditional_frame *previous_cframe;
  /* Have we seen an else yet?  */
  /* Have we seen an else yet?  */
  int else_seen;
  int else_seen;
  /* Whether we are currently ignoring input.  */
  /* Whether we are currently ignoring input.  */
  int ignoring;
  int ignoring;
  /* Whether a conditional at a higher level is ignoring input.
  /* Whether a conditional at a higher level is ignoring input.
     Set also when a branch of an "if .. elseif .." tree has matched
     Set also when a branch of an "if .. elseif .." tree has matched
     to prevent further matches.  */
     to prevent further matches.  */
  int dead_tree;
  int dead_tree;
  /* Macro nesting level at which this conditional was created.  */
  /* Macro nesting level at which this conditional was created.  */
  int macro_nest;
  int macro_nest;
};
};
 
 
static void initialize_cframe (struct conditional_frame *cframe);
static void initialize_cframe (struct conditional_frame *cframe);
static char *get_mri_string (int, int *);
static char *get_mri_string (int, int *);
 
 
static struct conditional_frame *current_cframe = NULL;
static struct conditional_frame *current_cframe = NULL;
 
 
/* Performs the .ifdef (test_defined == 1) and
/* Performs the .ifdef (test_defined == 1) and
   the .ifndef (test_defined == 0) pseudo op.  */
   the .ifndef (test_defined == 0) pseudo op.  */
 
 
void
void
s_ifdef (int test_defined)
s_ifdef (int test_defined)
{
{
  /* Points to name of symbol.  */
  /* Points to name of symbol.  */
  char *name;
  char *name;
  /* Points to symbol.  */
  /* Points to symbol.  */
  symbolS *symbolP;
  symbolS *symbolP;
  struct conditional_frame cframe;
  struct conditional_frame cframe;
  char c;
  char c;
 
 
  /* Leading whitespace is part of operand.  */
  /* Leading whitespace is part of operand.  */
  SKIP_WHITESPACE ();
  SKIP_WHITESPACE ();
  name = input_line_pointer;
  name = input_line_pointer;
 
 
  if (!is_name_beginner (*name))
  if (!is_name_beginner (*name))
    {
    {
      as_bad (_("invalid identifier for \".ifdef\""));
      as_bad (_("invalid identifier for \".ifdef\""));
      obstack_1grow (&cond_obstack, 0);
      obstack_1grow (&cond_obstack, 0);
      ignore_rest_of_line ();
      ignore_rest_of_line ();
      return;
      return;
    }
    }
 
 
  c = get_symbol_end ();
  c = get_symbol_end ();
  symbolP = symbol_find (name);
  symbolP = symbol_find (name);
  *input_line_pointer = c;
  *input_line_pointer = c;
 
 
  initialize_cframe (&cframe);
  initialize_cframe (&cframe);
 
 
  if (cframe.dead_tree)
  if (cframe.dead_tree)
    cframe.ignoring = 1;
    cframe.ignoring = 1;
  else
  else
    {
    {
      int is_defined;
      int is_defined;
 
 
      /* Use the same definition of 'defined' as .equiv so that a symbol
      /* Use the same definition of 'defined' as .equiv so that a symbol
         which has been referenced but not yet given a value/address is
         which has been referenced but not yet given a value/address is
         considered to be undefined.  */
         considered to be undefined.  */
      is_defined =
      is_defined =
        symbolP != NULL
        symbolP != NULL
        && (S_IS_DEFINED (symbolP) || symbol_equated_p (symbolP))
        && (S_IS_DEFINED (symbolP) || symbol_equated_p (symbolP))
        && S_GET_SEGMENT (symbolP) != reg_section;
        && S_GET_SEGMENT (symbolP) != reg_section;
 
 
      cframe.ignoring = ! (test_defined ^ is_defined);
      cframe.ignoring = ! (test_defined ^ is_defined);
    }
    }
 
 
  current_cframe = ((struct conditional_frame *)
  current_cframe = ((struct conditional_frame *)
                    obstack_copy (&cond_obstack, &cframe,
                    obstack_copy (&cond_obstack, &cframe,
                                  sizeof (cframe)));
                                  sizeof (cframe)));
 
 
  if (LISTING_SKIP_COND ()
  if (LISTING_SKIP_COND ()
      && cframe.ignoring
      && cframe.ignoring
      && (cframe.previous_cframe == NULL
      && (cframe.previous_cframe == NULL
          || ! cframe.previous_cframe->ignoring))
          || ! cframe.previous_cframe->ignoring))
    listing_list (2);
    listing_list (2);
 
 
  demand_empty_rest_of_line ();
  demand_empty_rest_of_line ();
}
}
 
 
void
void
s_if (int arg)
s_if (int arg)
{
{
  expressionS operand;
  expressionS operand;
  struct conditional_frame cframe;
  struct conditional_frame cframe;
  int t;
  int t;
  char *stop = NULL;
  char *stop = NULL;
  char stopc;
  char stopc;
 
 
  if (flag_mri)
  if (flag_mri)
    stop = mri_comment_field (&stopc);
    stop = mri_comment_field (&stopc);
 
 
  /* Leading whitespace is part of operand.  */
  /* Leading whitespace is part of operand.  */
  SKIP_WHITESPACE ();
  SKIP_WHITESPACE ();
 
 
  if (current_cframe != NULL && current_cframe->ignoring)
  if (current_cframe != NULL && current_cframe->ignoring)
    {
    {
      operand.X_add_number = 0;
      operand.X_add_number = 0;
      while (! is_end_of_line[(unsigned char) *input_line_pointer])
      while (! is_end_of_line[(unsigned char) *input_line_pointer])
        ++input_line_pointer;
        ++input_line_pointer;
    }
    }
  else
  else
    {
    {
      expression_and_evaluate (&operand);
      expression_and_evaluate (&operand);
      if (operand.X_op != O_constant)
      if (operand.X_op != O_constant)
        as_bad (_("non-constant expression in \".if\" statement"));
        as_bad (_("non-constant expression in \".if\" statement"));
    }
    }
 
 
  switch ((operatorT) arg)
  switch ((operatorT) arg)
    {
    {
    case O_eq: t = operand.X_add_number == 0; break;
    case O_eq: t = operand.X_add_number == 0; break;
    case O_ne: t = operand.X_add_number != 0; break;
    case O_ne: t = operand.X_add_number != 0; break;
    case O_lt: t = operand.X_add_number < 0; break;
    case O_lt: t = operand.X_add_number < 0; break;
    case O_le: t = operand.X_add_number <= 0; break;
    case O_le: t = operand.X_add_number <= 0; break;
    case O_ge: t = operand.X_add_number >= 0; break;
    case O_ge: t = operand.X_add_number >= 0; break;
    case O_gt: t = operand.X_add_number > 0; break;
    case O_gt: t = operand.X_add_number > 0; break;
    default:
    default:
      abort ();
      abort ();
      return;
      return;
    }
    }
 
 
  /* If the above error is signaled, this will dispatch
  /* If the above error is signaled, this will dispatch
     using an undefined result.  No big deal.  */
     using an undefined result.  No big deal.  */
  initialize_cframe (&cframe);
  initialize_cframe (&cframe);
  cframe.ignoring = cframe.dead_tree || ! t;
  cframe.ignoring = cframe.dead_tree || ! t;
  current_cframe = ((struct conditional_frame *)
  current_cframe = ((struct conditional_frame *)
                    obstack_copy (&cond_obstack, &cframe, sizeof (cframe)));
                    obstack_copy (&cond_obstack, &cframe, sizeof (cframe)));
 
 
  if (LISTING_SKIP_COND ()
  if (LISTING_SKIP_COND ()
      && cframe.ignoring
      && cframe.ignoring
      && (cframe.previous_cframe == NULL
      && (cframe.previous_cframe == NULL
          || ! cframe.previous_cframe->ignoring))
          || ! cframe.previous_cframe->ignoring))
    listing_list (2);
    listing_list (2);
 
 
  if (flag_mri)
  if (flag_mri)
    mri_comment_end (stop, stopc);
    mri_comment_end (stop, stopc);
 
 
  demand_empty_rest_of_line ();
  demand_empty_rest_of_line ();
}
}
 
 
/* Performs the .ifb (test_blank == 1) and
/* Performs the .ifb (test_blank == 1) and
   the .ifnb (test_blank == 0) pseudo op.  */
   the .ifnb (test_blank == 0) pseudo op.  */
 
 
void
void
s_ifb (int test_blank)
s_ifb (int test_blank)
{
{
  struct conditional_frame cframe;
  struct conditional_frame cframe;
 
 
  initialize_cframe (&cframe);
  initialize_cframe (&cframe);
 
 
  if (cframe.dead_tree)
  if (cframe.dead_tree)
    cframe.ignoring = 1;
    cframe.ignoring = 1;
  else
  else
    {
    {
      int is_eol;
      int is_eol;
 
 
      SKIP_WHITESPACE ();
      SKIP_WHITESPACE ();
      is_eol = is_end_of_line[(unsigned char) *input_line_pointer];
      is_eol = is_end_of_line[(unsigned char) *input_line_pointer];
      cframe.ignoring = (test_blank == !is_eol);
      cframe.ignoring = (test_blank == !is_eol);
    }
    }
 
 
  current_cframe = ((struct conditional_frame *)
  current_cframe = ((struct conditional_frame *)
                    obstack_copy (&cond_obstack, &cframe,
                    obstack_copy (&cond_obstack, &cframe,
                                  sizeof (cframe)));
                                  sizeof (cframe)));
 
 
  if (LISTING_SKIP_COND ()
  if (LISTING_SKIP_COND ()
      && cframe.ignoring
      && cframe.ignoring
      && (cframe.previous_cframe == NULL
      && (cframe.previous_cframe == NULL
          || ! cframe.previous_cframe->ignoring))
          || ! cframe.previous_cframe->ignoring))
    listing_list (2);
    listing_list (2);
 
 
  ignore_rest_of_line ();
  ignore_rest_of_line ();
}
}
 
 
/* Get a string for the MRI IFC or IFNC pseudo-ops.  */
/* Get a string for the MRI IFC or IFNC pseudo-ops.  */
 
 
static char *
static char *
get_mri_string (int terminator, int *len)
get_mri_string (int terminator, int *len)
{
{
  char *ret;
  char *ret;
  char *s;
  char *s;
 
 
  SKIP_WHITESPACE ();
  SKIP_WHITESPACE ();
  s = ret = input_line_pointer;
  s = ret = input_line_pointer;
  if (*input_line_pointer == '\'')
  if (*input_line_pointer == '\'')
    {
    {
      ++s;
      ++s;
      ++input_line_pointer;
      ++input_line_pointer;
      while (! is_end_of_line[(unsigned char) *input_line_pointer])
      while (! is_end_of_line[(unsigned char) *input_line_pointer])
        {
        {
          *s++ = *input_line_pointer++;
          *s++ = *input_line_pointer++;
          if (s[-1] == '\'')
          if (s[-1] == '\'')
            {
            {
              if (*input_line_pointer != '\'')
              if (*input_line_pointer != '\'')
                break;
                break;
              ++input_line_pointer;
              ++input_line_pointer;
            }
            }
        }
        }
      SKIP_WHITESPACE ();
      SKIP_WHITESPACE ();
    }
    }
  else
  else
    {
    {
      while (*input_line_pointer != terminator
      while (*input_line_pointer != terminator
             && ! is_end_of_line[(unsigned char) *input_line_pointer])
             && ! is_end_of_line[(unsigned char) *input_line_pointer])
        ++input_line_pointer;
        ++input_line_pointer;
      s = input_line_pointer;
      s = input_line_pointer;
      while (s > ret && (s[-1] == ' ' || s[-1] == '\t'))
      while (s > ret && (s[-1] == ' ' || s[-1] == '\t'))
        --s;
        --s;
    }
    }
 
 
  *len = s - ret;
  *len = s - ret;
  return ret;
  return ret;
}
}
 
 
/* The MRI IFC and IFNC pseudo-ops.  */
/* The MRI IFC and IFNC pseudo-ops.  */
 
 
void
void
s_ifc (int arg)
s_ifc (int arg)
{
{
  char *stop = NULL;
  char *stop = NULL;
  char stopc;
  char stopc;
  char *s1, *s2;
  char *s1, *s2;
  int len1, len2;
  int len1, len2;
  int res;
  int res;
  struct conditional_frame cframe;
  struct conditional_frame cframe;
 
 
  if (flag_mri)
  if (flag_mri)
    stop = mri_comment_field (&stopc);
    stop = mri_comment_field (&stopc);
 
 
  s1 = get_mri_string (',', &len1);
  s1 = get_mri_string (',', &len1);
 
 
  if (*input_line_pointer != ',')
  if (*input_line_pointer != ',')
    as_bad (_("bad format for ifc or ifnc"));
    as_bad (_("bad format for ifc or ifnc"));
  else
  else
    ++input_line_pointer;
    ++input_line_pointer;
 
 
  s2 = get_mri_string (';', &len2);
  s2 = get_mri_string (';', &len2);
 
 
  res = len1 == len2 && strncmp (s1, s2, len1) == 0;
  res = len1 == len2 && strncmp (s1, s2, len1) == 0;
 
 
  initialize_cframe (&cframe);
  initialize_cframe (&cframe);
  cframe.ignoring = cframe.dead_tree || ! (res ^ arg);
  cframe.ignoring = cframe.dead_tree || ! (res ^ arg);
  current_cframe = ((struct conditional_frame *)
  current_cframe = ((struct conditional_frame *)
                    obstack_copy (&cond_obstack, &cframe, sizeof (cframe)));
                    obstack_copy (&cond_obstack, &cframe, sizeof (cframe)));
 
 
  if (LISTING_SKIP_COND ()
  if (LISTING_SKIP_COND ()
      && cframe.ignoring
      && cframe.ignoring
      && (cframe.previous_cframe == NULL
      && (cframe.previous_cframe == NULL
          || ! cframe.previous_cframe->ignoring))
          || ! cframe.previous_cframe->ignoring))
    listing_list (2);
    listing_list (2);
 
 
  if (flag_mri)
  if (flag_mri)
    mri_comment_end (stop, stopc);
    mri_comment_end (stop, stopc);
 
 
  demand_empty_rest_of_line ();
  demand_empty_rest_of_line ();
}
}
 
 
void
void
s_elseif (int arg)
s_elseif (int arg)
{
{
  if (current_cframe == NULL)
  if (current_cframe == NULL)
    {
    {
      as_bad (_("\".elseif\" without matching \".if\""));
      as_bad (_("\".elseif\" without matching \".if\""));
    }
    }
  else if (current_cframe->else_seen)
  else if (current_cframe->else_seen)
    {
    {
      as_bad (_("\".elseif\" after \".else\""));
      as_bad (_("\".elseif\" after \".else\""));
      as_bad_where (current_cframe->else_file_line.file,
      as_bad_where (current_cframe->else_file_line.file,
                    current_cframe->else_file_line.line,
                    current_cframe->else_file_line.line,
                    _("here is the previous \"else\""));
                    _("here is the previous \"else\""));
      as_bad_where (current_cframe->if_file_line.file,
      as_bad_where (current_cframe->if_file_line.file,
                    current_cframe->if_file_line.line,
                    current_cframe->if_file_line.line,
                    _("here is the previous \"if\""));
                    _("here is the previous \"if\""));
    }
    }
  else
  else
    {
    {
      as_where (&current_cframe->else_file_line.file,
      as_where (&current_cframe->else_file_line.file,
                &current_cframe->else_file_line.line);
                &current_cframe->else_file_line.line);
 
 
      current_cframe->dead_tree |= !current_cframe->ignoring;
      current_cframe->dead_tree |= !current_cframe->ignoring;
      current_cframe->ignoring = current_cframe->dead_tree;
      current_cframe->ignoring = current_cframe->dead_tree;
    }
    }
 
 
  if (current_cframe == NULL || current_cframe->ignoring)
  if (current_cframe == NULL || current_cframe->ignoring)
    {
    {
      while (! is_end_of_line[(unsigned char) *input_line_pointer])
      while (! is_end_of_line[(unsigned char) *input_line_pointer])
        ++input_line_pointer;
        ++input_line_pointer;
 
 
      if (current_cframe == NULL)
      if (current_cframe == NULL)
        return;
        return;
    }
    }
  else
  else
    {
    {
      expressionS operand;
      expressionS operand;
      int t;
      int t;
 
 
      /* Leading whitespace is part of operand.  */
      /* Leading whitespace is part of operand.  */
      SKIP_WHITESPACE ();
      SKIP_WHITESPACE ();
 
 
      expression_and_evaluate (&operand);
      expression_and_evaluate (&operand);
      if (operand.X_op != O_constant)
      if (operand.X_op != O_constant)
        as_bad (_("non-constant expression in \".elseif\" statement"));
        as_bad (_("non-constant expression in \".elseif\" statement"));
 
 
      switch ((operatorT) arg)
      switch ((operatorT) arg)
        {
        {
        case O_eq: t = operand.X_add_number == 0; break;
        case O_eq: t = operand.X_add_number == 0; break;
        case O_ne: t = operand.X_add_number != 0; break;
        case O_ne: t = operand.X_add_number != 0; break;
        case O_lt: t = operand.X_add_number < 0; break;
        case O_lt: t = operand.X_add_number < 0; break;
        case O_le: t = operand.X_add_number <= 0; break;
        case O_le: t = operand.X_add_number <= 0; break;
        case O_ge: t = operand.X_add_number >= 0; break;
        case O_ge: t = operand.X_add_number >= 0; break;
        case O_gt: t = operand.X_add_number > 0; break;
        case O_gt: t = operand.X_add_number > 0; break;
        default:
        default:
          abort ();
          abort ();
          return;
          return;
        }
        }
 
 
      current_cframe->ignoring = current_cframe->dead_tree || ! t;
      current_cframe->ignoring = current_cframe->dead_tree || ! t;
    }
    }
 
 
  if (LISTING_SKIP_COND ()
  if (LISTING_SKIP_COND ()
      && (current_cframe->previous_cframe == NULL
      && (current_cframe->previous_cframe == NULL
          || ! current_cframe->previous_cframe->ignoring))
          || ! current_cframe->previous_cframe->ignoring))
    {
    {
      if (! current_cframe->ignoring)
      if (! current_cframe->ignoring)
        listing_list (1);
        listing_list (1);
      else
      else
        listing_list (2);
        listing_list (2);
    }
    }
 
 
  demand_empty_rest_of_line ();
  demand_empty_rest_of_line ();
}
}
 
 
void
void
s_endif (int arg ATTRIBUTE_UNUSED)
s_endif (int arg ATTRIBUTE_UNUSED)
{
{
  struct conditional_frame *hold;
  struct conditional_frame *hold;
 
 
  if (current_cframe == NULL)
  if (current_cframe == NULL)
    {
    {
      as_bad (_("\".endif\" without \".if\""));
      as_bad (_("\".endif\" without \".if\""));
    }
    }
  else
  else
    {
    {
      if (LISTING_SKIP_COND ()
      if (LISTING_SKIP_COND ()
          && current_cframe->ignoring
          && current_cframe->ignoring
          && (current_cframe->previous_cframe == NULL
          && (current_cframe->previous_cframe == NULL
              || ! current_cframe->previous_cframe->ignoring))
              || ! current_cframe->previous_cframe->ignoring))
        listing_list (1);
        listing_list (1);
 
 
      hold = current_cframe;
      hold = current_cframe;
      current_cframe = current_cframe->previous_cframe;
      current_cframe = current_cframe->previous_cframe;
      obstack_free (&cond_obstack, hold);
      obstack_free (&cond_obstack, hold);
    }                           /* if one pop too many */
    }                           /* if one pop too many */
 
 
  if (flag_mri)
  if (flag_mri)
    {
    {
      while (! is_end_of_line[(unsigned char) *input_line_pointer])
      while (! is_end_of_line[(unsigned char) *input_line_pointer])
        ++input_line_pointer;
        ++input_line_pointer;
    }
    }
 
 
  demand_empty_rest_of_line ();
  demand_empty_rest_of_line ();
}
}
 
 
void
void
s_else (int arg ATTRIBUTE_UNUSED)
s_else (int arg ATTRIBUTE_UNUSED)
{
{
  if (current_cframe == NULL)
  if (current_cframe == NULL)
    {
    {
      as_bad (_("\".else\" without matching \".if\""));
      as_bad (_("\".else\" without matching \".if\""));
    }
    }
  else if (current_cframe->else_seen)
  else if (current_cframe->else_seen)
    {
    {
      as_bad (_("duplicate \"else\""));
      as_bad (_("duplicate \"else\""));
      as_bad_where (current_cframe->else_file_line.file,
      as_bad_where (current_cframe->else_file_line.file,
                    current_cframe->else_file_line.line,
                    current_cframe->else_file_line.line,
                    _("here is the previous \"else\""));
                    _("here is the previous \"else\""));
      as_bad_where (current_cframe->if_file_line.file,
      as_bad_where (current_cframe->if_file_line.file,
                    current_cframe->if_file_line.line,
                    current_cframe->if_file_line.line,
                    _("here is the previous \"if\""));
                    _("here is the previous \"if\""));
    }
    }
  else
  else
    {
    {
      as_where (&current_cframe->else_file_line.file,
      as_where (&current_cframe->else_file_line.file,
                &current_cframe->else_file_line.line);
                &current_cframe->else_file_line.line);
 
 
      current_cframe->ignoring =
      current_cframe->ignoring =
        current_cframe->dead_tree | !current_cframe->ignoring;
        current_cframe->dead_tree | !current_cframe->ignoring;
 
 
      if (LISTING_SKIP_COND ()
      if (LISTING_SKIP_COND ()
          && (current_cframe->previous_cframe == NULL
          && (current_cframe->previous_cframe == NULL
              || ! current_cframe->previous_cframe->ignoring))
              || ! current_cframe->previous_cframe->ignoring))
        {
        {
          if (! current_cframe->ignoring)
          if (! current_cframe->ignoring)
            listing_list (1);
            listing_list (1);
          else
          else
            listing_list (2);
            listing_list (2);
        }
        }
 
 
      current_cframe->else_seen = 1;
      current_cframe->else_seen = 1;
    }
    }
 
 
  if (flag_mri)
  if (flag_mri)
    {
    {
      while (! is_end_of_line[(unsigned char) *input_line_pointer])
      while (! is_end_of_line[(unsigned char) *input_line_pointer])
        ++input_line_pointer;
        ++input_line_pointer;
    }
    }
 
 
  demand_empty_rest_of_line ();
  demand_empty_rest_of_line ();
}
}
 
 
void
void
s_ifeqs (int arg)
s_ifeqs (int arg)
{
{
  char *s1, *s2;
  char *s1, *s2;
  int len1, len2;
  int len1, len2;
  int res;
  int res;
  struct conditional_frame cframe;
  struct conditional_frame cframe;
 
 
  s1 = demand_copy_C_string (&len1);
  s1 = demand_copy_C_string (&len1);
 
 
  SKIP_WHITESPACE ();
  SKIP_WHITESPACE ();
  if (*input_line_pointer != ',')
  if (*input_line_pointer != ',')
    {
    {
      as_bad (_(".ifeqs syntax error"));
      as_bad (_(".ifeqs syntax error"));
      ignore_rest_of_line ();
      ignore_rest_of_line ();
      return;
      return;
    }
    }
 
 
  ++input_line_pointer;
  ++input_line_pointer;
 
 
  s2 = demand_copy_C_string (&len2);
  s2 = demand_copy_C_string (&len2);
 
 
  res = len1 == len2 && strncmp (s1, s2, len1) == 0;
  res = len1 == len2 && strncmp (s1, s2, len1) == 0;
 
 
  initialize_cframe (&cframe);
  initialize_cframe (&cframe);
  cframe.ignoring = cframe.dead_tree || ! (res ^ arg);
  cframe.ignoring = cframe.dead_tree || ! (res ^ arg);
  current_cframe = ((struct conditional_frame *)
  current_cframe = ((struct conditional_frame *)
                    obstack_copy (&cond_obstack, &cframe, sizeof (cframe)));
                    obstack_copy (&cond_obstack, &cframe, sizeof (cframe)));
 
 
  if (LISTING_SKIP_COND ()
  if (LISTING_SKIP_COND ()
      && cframe.ignoring
      && cframe.ignoring
      && (cframe.previous_cframe == NULL
      && (cframe.previous_cframe == NULL
          || ! cframe.previous_cframe->ignoring))
          || ! cframe.previous_cframe->ignoring))
    listing_list (2);
    listing_list (2);
 
 
  demand_empty_rest_of_line ();
  demand_empty_rest_of_line ();
}
}
 
 
int
int
ignore_input (void)
ignore_input (void)
{
{
  char *s;
  char *s;
 
 
  s = input_line_pointer;
  s = input_line_pointer;
 
 
  if (NO_PSEUDO_DOT || flag_m68k_mri)
  if (NO_PSEUDO_DOT || flag_m68k_mri)
    {
    {
      if (s[-1] != '.')
      if (s[-1] != '.')
        --s;
        --s;
    }
    }
  else
  else
    {
    {
      if (s[-1] != '.')
      if (s[-1] != '.')
        return (current_cframe != NULL) && (current_cframe->ignoring);
        return (current_cframe != NULL) && (current_cframe->ignoring);
    }
    }
 
 
  /* We cannot ignore certain pseudo ops.  */
  /* We cannot ignore certain pseudo ops.  */
  if (((s[0] == 'i'
  if (((s[0] == 'i'
        || s[0] == 'I')
        || s[0] == 'I')
       && (!strncasecmp (s, "if", 2)
       && (!strncasecmp (s, "if", 2)
           || !strncasecmp (s, "ifdef", 5)
           || !strncasecmp (s, "ifdef", 5)
           || !strncasecmp (s, "ifndef", 6)))
           || !strncasecmp (s, "ifndef", 6)))
      || ((s[0] == 'e'
      || ((s[0] == 'e'
           || s[0] == 'E')
           || s[0] == 'E')
          && (!strncasecmp (s, "else", 4)
          && (!strncasecmp (s, "else", 4)
              || !strncasecmp (s, "endif", 5)
              || !strncasecmp (s, "endif", 5)
              || !strncasecmp (s, "endc", 4))))
              || !strncasecmp (s, "endc", 4))))
    return 0;
    return 0;
 
 
  return (current_cframe != NULL) && (current_cframe->ignoring);
  return (current_cframe != NULL) && (current_cframe->ignoring);
}
}
 
 
static void
static void
initialize_cframe (struct conditional_frame *cframe)
initialize_cframe (struct conditional_frame *cframe)
{
{
  memset (cframe, 0, sizeof (*cframe));
  memset (cframe, 0, sizeof (*cframe));
  as_where (&cframe->if_file_line.file,
  as_where (&cframe->if_file_line.file,
            &cframe->if_file_line.line);
            &cframe->if_file_line.line);
  cframe->previous_cframe = current_cframe;
  cframe->previous_cframe = current_cframe;
  cframe->dead_tree = current_cframe != NULL && current_cframe->ignoring;
  cframe->dead_tree = current_cframe != NULL && current_cframe->ignoring;
  cframe->macro_nest = macro_nest;
  cframe->macro_nest = macro_nest;
}
}
 
 
/* Give an error if a conditional is unterminated inside a macro or
/* Give an error if a conditional is unterminated inside a macro or
   the assembly as a whole.  If NEST is non negative, we are being
   the assembly as a whole.  If NEST is non negative, we are being
   called because of the end of a macro expansion.  If NEST is
   called because of the end of a macro expansion.  If NEST is
   negative, we are being called at the of the input files.  */
   negative, we are being called at the of the input files.  */
 
 
void
void
cond_finish_check (int nest)
cond_finish_check (int nest)
{
{
  if (current_cframe != NULL && current_cframe->macro_nest >= nest)
  if (current_cframe != NULL && current_cframe->macro_nest >= nest)
    {
    {
      if (nest >= 0)
      if (nest >= 0)
        as_bad (_("end of macro inside conditional"));
        as_bad (_("end of macro inside conditional"));
      else
      else
        as_bad (_("end of file inside conditional"));
        as_bad (_("end of file inside conditional"));
      as_bad_where (current_cframe->if_file_line.file,
      as_bad_where (current_cframe->if_file_line.file,
                    current_cframe->if_file_line.line,
                    current_cframe->if_file_line.line,
                    _("here is the start of the unterminated conditional"));
                    _("here is the start of the unterminated conditional"));
      if (current_cframe->else_seen)
      if (current_cframe->else_seen)
        as_bad_where (current_cframe->else_file_line.file,
        as_bad_where (current_cframe->else_file_line.file,
                      current_cframe->else_file_line.line,
                      current_cframe->else_file_line.line,
                      _("here is the \"else\" of the unterminated conditional"));
                      _("here is the \"else\" of the unterminated conditional"));
    }
    }
}
}
 
 
/* This function is called when we exit out of a macro.  We assume
/* This function is called when we exit out of a macro.  We assume
   that any conditionals which began within the macro are correctly
   that any conditionals which began within the macro are correctly
   nested, and just pop them off the stack.  */
   nested, and just pop them off the stack.  */
 
 
void
void
cond_exit_macro (int nest)
cond_exit_macro (int nest)
{
{
  while (current_cframe != NULL && current_cframe->macro_nest >= nest)
  while (current_cframe != NULL && current_cframe->macro_nest >= nest)
    {
    {
      struct conditional_frame *hold;
      struct conditional_frame *hold;
 
 
      hold = current_cframe;
      hold = current_cframe;
      current_cframe = current_cframe->previous_cframe;
      current_cframe = current_cframe->previous_cframe;
      obstack_free (&cond_obstack, hold);
      obstack_free (&cond_obstack, hold);
    }
    }
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.