* cond.c (get_mri_string): New static function.

(s_ifc): New function.
This commit is contained in:
Ian Lance Taylor 1995-08-21 18:18:56 +00:00
parent 840886d875
commit 075e616c28

View File

@ -1,5 +1,5 @@
/* cond.c - conditional assembly pseudo-ops, and .include
Copyright (C) 1990, 1991 Free Software Foundation, Inc.
Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
This file is part of GAS, the GNU Assembler.
@ -15,7 +15,7 @@
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 Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include "as.h"
@ -24,15 +24,15 @@
/* This is allocated to grow and shrink as .ifdef/.endif pairs are scanned. */
struct obstack cond_obstack;
struct file_line {
char *logical_file;
int logical_line;
char *physical_file;
int physical_line;
struct file_line
{
char *file;
unsigned int line;
}; /* file_line */
/* This is what we push and pop. */
struct conditional_frame {
struct conditional_frame
{
struct file_line if_file_line; /* the source file & line number of the "if" */
struct file_line else_file_line; /* the source file & line of the "else" */
struct conditional_frame *previous_cframe;
@ -41,23 +41,13 @@ struct conditional_frame {
int dead_tree; /* if a conditional at a higher level is ignoring input. */
}; /* conditional_frame */
#ifdef __STDC__
static void get_file_line(struct file_line *into);
static void initialize_cframe(struct conditional_frame *cframe);
static void set_file_line(struct file_line *from);
#else
static void get_file_line();
static void initialize_cframe();
static void set_file_line();
#endif
static void initialize_cframe PARAMS ((struct conditional_frame *cframe));
static char *get_mri_string PARAMS ((int, int *));
static struct conditional_frame *current_cframe = NULL;
void s_ifdef(arg)
void
s_ifdef (arg)
int arg;
{
register char *name; /* points to name of symbol */
@ -67,52 +57,142 @@ int arg;
SKIP_WHITESPACE (); /* Leading whitespace is part of operand. */
name = input_line_pointer;
if (!is_name_beginner(*name)) {
if (!is_name_beginner (*name))
{
as_bad ("invalid identifier for \".ifdef\"");
obstack_1grow (&cond_obstack, 0);
} else {
}
else
{
get_symbol_end ();
++input_line_pointer;
symbolP = symbol_find (name);
initialize_cframe (&cframe);
cframe.ignoring = cframe.dead_tree && !((symbolP != 0) ^ arg);
cframe.ignoring = cframe.dead_tree || !((symbolP != 0) ^ arg);
current_cframe = (struct conditional_frame *) obstack_copy (&cond_obstack, &cframe, sizeof (cframe));
} /* if a valid identifyer name */
return;
} /* s_ifdef() */
void s_if(arg)
void
s_if (arg)
int arg;
{
expressionS operand;
struct conditional_frame cframe;
int t;
SKIP_WHITESPACE (); /* Leading whitespace is part of operand. */
expr(0, &operand);
expression (&operand);
if (operand.X_add_symbol != NULL
|| operand.X_subtract_symbol != NULL) {
if (operand.X_op != O_constant)
as_bad ("non-constant expression in \".if\" statement");
} /* bad condition */
switch ((operatorT) arg)
{
case O_eq: 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_le: 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;
default:
abort ();
}
/* If the above error is signaled, this will dispatch
using an undefined result. No big deal. */
initialize_cframe (&cframe);
cframe.ignoring = cframe.dead_tree || !((operand.X_add_number != 0) ^ arg);
current_cframe = (struct conditional_frame *) obstack_copy(&cond_obstack, &cframe, sizeof(cframe));
cframe.ignoring = cframe.dead_tree || ! t;
current_cframe = ((struct conditional_frame *)
obstack_copy (&cond_obstack, &cframe, sizeof (cframe)));
return;
} /* s_if() */
void s_endif(arg)
/* Get a string for the MRI IFC or IFNC pseudo-ops. */
static char *
get_mri_string (terminator, len)
int terminator;
int *len;
{
char *ret;
char *s;
SKIP_WHITESPACE ();
s = ret = input_line_pointer;
if (*input_line_pointer == '\'')
{
++s;
++input_line_pointer;
while (! is_end_of_line[(unsigned char) *input_line_pointer])
{
*s++ = *input_line_pointer++;
if (s[-1] == '\'')
{
if (*input_line_pointer != '\'')
break;
++input_line_pointer;
}
}
SKIP_WHITESPACE ();
}
else
{
while (*input_line_pointer != terminator
&& ! is_end_of_line[(unsigned char) *input_line_pointer])
++input_line_pointer;
s = input_line_pointer;
while (s > ret && (s[-1] == ' ' || s[-1] == '\t'))
--s;
}
*len = s - ret;
return ret;
}
/* The MRI IFC and IFNC pseudo-ops. */
void
s_ifc (arg)
int arg;
{
char *s1, *s2;
int len1, len2;
int res;
struct conditional_frame cframe;
s1 = get_mri_string (',', &len1);
if (*input_line_pointer != ',')
as_bad ("bad format for ifc or ifnc");
else
++input_line_pointer;
s2 = get_mri_string (';', &len2);
res = len1 == len2 && strncmp (s1, s2, len1) == 0;
initialize_cframe (&cframe);
cframe.ignoring = cframe.dead_tree || ! (res ^ arg);
current_cframe = ((struct conditional_frame *)
obstack_copy (&cond_obstack, &cframe, sizeof (cframe)));
}
void
s_endif (arg)
int arg;
{
struct conditional_frame *hold;
if (current_cframe == NULL) {
if (current_cframe == NULL)
{
as_bad ("\".endif\" without \".if\"");
} else {
}
else
{
hold = current_cframe;
current_cframe = current_cframe->previous_cframe;
obstack_free (&cond_obstack, hold);
@ -121,27 +201,32 @@ int arg;
return;
} /* s_endif() */
void s_else(arg)
void
s_else (arg)
int arg;
{
if (current_cframe == NULL) {
if (current_cframe == NULL)
{
as_bad (".else without matching .if - ignored");
} else if (current_cframe->else_seen) {
struct file_line hold;
}
else if (current_cframe->else_seen)
{
as_bad ("duplicate \"else\" - ignored");
as_bad_where (current_cframe->else_file_line.file,
current_cframe->else_file_line.line,
"here is the previous \"else\"");
as_bad_where (current_cframe->if_file_line.file,
current_cframe->if_file_line.line,
"here is the previous \"if\"");
}
else
{
as_where (&current_cframe->else_file_line.file,
&current_cframe->else_file_line.line);
get_file_line(&hold);
set_file_line(&current_cframe->else_file_line);
as_bad("here is the previous \"else\".");
set_file_line(&current_cframe->if_file_line);
as_bad("here is the matching \".if\".");
set_file_line(&hold);
} else {
get_file_line(&current_cframe->else_file_line);
if (!current_cframe->dead_tree) {
if (!current_cframe->dead_tree)
{
current_cframe->ignoring = !current_cframe->ignoring;
} /* if not a dead tree */
@ -151,7 +236,8 @@ int arg;
return;
} /* s_else() */
void s_ifeqs(arg)
void
s_ifeqs (arg)
int arg;
{
as_bad ("ifeqs not implemented.");
@ -159,72 +245,55 @@ int arg;
return;
} /* s_ifeqs() */
void s_end(arg)
int arg;
int
ignore_input ()
{
return;
} /* s_end() */
char *s;
int ignore_input() {
char *ptr = obstack_next_free (&cond_obstack);
s = input_line_pointer;
/* We cannot ignore certain pseudo ops. */
if (input_line_pointer[-1] == '.'
&& ((input_line_pointer[0] == 'i'
&& (!strncmp (input_line_pointer, "if", 2)
|| !strncmp (input_line_pointer, "ifdef", 5)
|| !strncmp (input_line_pointer, "ifndef", 6)))
|| (input_line_pointer[0] == 'e'
&& (!strncmp (input_line_pointer, "else", 4)
|| !strncmp (input_line_pointer, "endif", 5))))) {
return 0;
if (flag_mri
#ifdef NO_PSEUDO_DOT
|| 1
#endif
)
{
if (s[-1] != '.')
--s;
}
else
{
if (s[-1] != '.')
return (current_cframe != NULL) && (current_cframe->ignoring);
}
return((current_cframe != NULL) && (current_cframe->ignoring));
/* We cannot ignore certain pseudo ops. */
if ((s[0] == 'i'
&& (!strncmp (s, "if", 2)
|| !strncmp (s, "ifdef", 5)
|| !strncmp (s, "ifndef", 6)))
|| (s[0] == 'e'
&& (!strncmp (s, "else", 4)
|| !strncmp (s, "endif", 5)
|| !strncmp (s, "endc", 4))))
return 0;
return (current_cframe != NULL) && (current_cframe->ignoring);
} /* ignore_input() */
static void initialize_cframe(cframe)
static void
initialize_cframe (cframe)
struct conditional_frame *cframe;
{
memset (cframe, 0, sizeof (*cframe));
get_file_line(&(cframe->if_file_line));
as_where (&cframe->if_file_line.file,
&cframe->if_file_line.line);
cframe->previous_cframe = current_cframe;
cframe->dead_tree = current_cframe != NULL && current_cframe->ignoring;
return;
} /* initialize_cframe() */
static void get_file_line(into)
struct file_line *into;
{
extern char *logical_input_file;
extern char *physical_input_file;
extern int logical_input_line;
extern int physical_input_line;
into->logical_file = logical_input_file;
into->logical_line = logical_input_line;
into->physical_file = physical_input_file;
into->physical_line = physical_input_line;
return;
} /* get_file_line() */
static void set_file_line(from)
struct file_line *from;
{
extern char *logical_input_file;
extern char *physical_input_file;
extern int logical_input_line;
extern int physical_input_line;
logical_input_file = from->logical_file;
logical_input_line = from->logical_line;
physical_input_file = from->physical_file;
physical_input_line = from->physical_line;
return;
} /* set_file_line() */
/*
* Local Variables:
* fill-column: 131