1991-04-05 02:19:53 +08:00
|
|
|
|
/* expr.c -operands, expressions-
|
1993-03-13 04:01:28 +08:00
|
|
|
|
Copyright (C) 1987, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
1992-02-13 16:33:54 +08:00
|
|
|
|
This file is part of GAS, the GNU Assembler.
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
1992-02-13 16:33:54 +08:00
|
|
|
|
GAS is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
any later version.
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
1992-02-13 16:33:54 +08:00
|
|
|
|
GAS is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
1992-02-13 16:33:54 +08:00
|
|
|
|
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. */
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This is really a branch office of as-read.c. I split it out to clearly
|
|
|
|
|
* distinguish the world of expressions from the world of statements.
|
|
|
|
|
* (It also gives smaller files to re-compile.)
|
|
|
|
|
* Here, "operand"s are of expressions, not instructions.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
#include "as.h"
|
|
|
|
|
|
|
|
|
|
#include "obstack.h"
|
|
|
|
|
|
1993-03-13 04:01:28 +08:00
|
|
|
|
static void clean_up_expression PARAMS ((expressionS * expressionP));
|
|
|
|
|
extern const char EXP_CHARS[], FLT_CHARS[];
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Build any floating-point literal here.
|
|
|
|
|
* Also build any bignum literal here.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Seems atof_machine can backscan through generic_bignum and hit whatever
|
|
|
|
|
happens to be loaded before it in memory. And its way too complicated
|
|
|
|
|
for me to fix right. Thus a hack. JF: Just make generic_bignum bigger,
|
|
|
|
|
and never write into the early words, thus they'll always be zero.
|
1993-03-13 04:01:28 +08:00
|
|
|
|
I hate Dean's floating-point code. Bleh. */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
LITTLENUM_TYPE generic_bignum[SIZE_OF_LARGE_NUMBER + 6];
|
|
|
|
|
FLONUM_TYPE generic_floating_point_number =
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
&generic_bignum[6], /* low (JF: Was 0) */
|
|
|
|
|
&generic_bignum[SIZE_OF_LARGE_NUMBER + 6 - 1], /* high JF: (added +6) */
|
|
|
|
|
0, /* leader */
|
|
|
|
|
0, /* exponent */
|
|
|
|
|
0 /* sign */
|
|
|
|
|
};
|
1991-04-05 02:19:53 +08:00
|
|
|
|
/* If nonzero, we've been asked to assemble nan, +inf or -inf */
|
|
|
|
|
int generic_floating_point_magic;
|
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
floating_constant (expressionP)
|
|
|
|
|
expressionS *expressionP;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
{
|
|
|
|
|
/* input_line_pointer->*/
|
|
|
|
|
/* floating-point constant. */
|
|
|
|
|
int error_code;
|
|
|
|
|
|
|
|
|
|
error_code = atof_generic
|
1992-12-29 02:37:21 +08:00
|
|
|
|
(&input_line_pointer, ".", EXP_CHARS,
|
|
|
|
|
&generic_floating_point_number);
|
1992-02-23 04:45:24 +08:00
|
|
|
|
|
|
|
|
|
if (error_code)
|
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
if (error_code == ERROR_EXPONENT_OVERFLOW)
|
|
|
|
|
{
|
|
|
|
|
as_bad ("bad floating-point constant: exponent overflow, probably assembling junk");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
as_bad ("bad floating-point constant: unknown error code=%d.", error_code);
|
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
}
|
1993-03-13 04:01:28 +08:00
|
|
|
|
expressionP->X_seg = big_section;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
/* input_line_pointer->just after constant, */
|
|
|
|
|
/* which may point to whitespace. */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
expressionP->X_add_number = -1;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
integer_constant (radix, expressionP)
|
|
|
|
|
int radix;
|
|
|
|
|
expressionS *expressionP;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
register char *digit_2; /*->2nd digit of number. */
|
1992-02-23 04:45:24 +08:00
|
|
|
|
char c;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
|
|
|
|
register valueT number; /* offset or (absolute) value */
|
|
|
|
|
register short int digit; /* value of next digit in current radix */
|
|
|
|
|
register short int maxdig = 0;/* highest permitted digit value. */
|
|
|
|
|
register int too_many_digits = 0; /* if we see >= this number of */
|
|
|
|
|
register char *name; /* points to name of symbol */
|
|
|
|
|
register symbolS *symbolP; /* points to symbol */
|
|
|
|
|
|
|
|
|
|
int small; /* true if fits in 32 bits. */
|
1993-03-13 04:01:28 +08:00
|
|
|
|
extern const char hex_value[]; /* in hex_value.c */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
1992-02-23 04:45:24 +08:00
|
|
|
|
/* may be bignum, or may fit in 32 bits. */
|
|
|
|
|
/*
|
|
|
|
|
* most numbers fit into 32 bits, and we want this case to be fast.
|
|
|
|
|
* so we pretend it will fit into 32 bits. if, after making up a 32
|
|
|
|
|
* bit number, we realise that we have scanned more digits than
|
|
|
|
|
* comfortably fit into 32 bits, we re-scan the digits coding
|
|
|
|
|
* them into a bignum. for decimal and octal numbers we are conservative: some
|
|
|
|
|
* numbers may be assumed bignums when in fact they do fit into 32 bits.
|
|
|
|
|
* numbers of any radix can have excess leading zeros: we strive
|
|
|
|
|
* to recognise this and cast them back into 32 bits.
|
|
|
|
|
* we must check that the bignum really is more than 32
|
|
|
|
|
* bits, and change it back to a 32-bit number if it fits.
|
|
|
|
|
* the number we are looking for is expected to be positive, but
|
|
|
|
|
* if it fits into 32 bits as an unsigned number, we let it be a 32-bit
|
|
|
|
|
* number. the cavalier approach is for speed in ordinary cases.
|
|
|
|
|
*/
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
|
|
|
|
switch (radix)
|
1992-06-05 03:21:58 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
1992-06-05 03:21:58 +08:00
|
|
|
|
case 2:
|
|
|
|
|
maxdig = 2;
|
|
|
|
|
too_many_digits = 33;
|
|
|
|
|
break;
|
|
|
|
|
case 8:
|
|
|
|
|
maxdig = radix = 8;
|
|
|
|
|
too_many_digits = 11;
|
|
|
|
|
break;
|
|
|
|
|
case 16:
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
|
|
|
|
|
1992-06-05 03:21:58 +08:00
|
|
|
|
maxdig = radix = 16;
|
|
|
|
|
too_many_digits = 9;
|
|
|
|
|
break;
|
|
|
|
|
case 10:
|
|
|
|
|
maxdig = radix = 10;
|
|
|
|
|
too_many_digits = 11;
|
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
c = *input_line_pointer;
|
|
|
|
|
input_line_pointer++;
|
|
|
|
|
digit_2 = input_line_pointer;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
for (number = 0; (digit = hex_value[c]) < maxdig; c = *input_line_pointer++)
|
1992-06-05 03:21:58 +08:00
|
|
|
|
{
|
|
|
|
|
number = number * radix + digit;
|
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
/* c contains character after number. */
|
|
|
|
|
/* input_line_pointer->char after c. */
|
|
|
|
|
small = input_line_pointer - digit_2 < too_many_digits;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
if (!small)
|
1992-02-23 04:45:24 +08:00
|
|
|
|
{
|
1992-06-05 03:21:58 +08:00
|
|
|
|
/*
|
|
|
|
|
* we saw a lot of digits. manufacture a bignum the hard way.
|
|
|
|
|
*/
|
1992-12-29 02:37:21 +08:00
|
|
|
|
LITTLENUM_TYPE *leader; /*->high order littlenum of the bignum. */
|
|
|
|
|
LITTLENUM_TYPE *pointer; /*->littlenum we are frobbing now. */
|
1992-06-05 03:21:58 +08:00
|
|
|
|
long carry;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
1992-06-05 03:21:58 +08:00
|
|
|
|
leader = generic_bignum;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
generic_bignum[0] = 0;
|
|
|
|
|
generic_bignum[1] = 0;
|
1992-06-05 03:21:58 +08:00
|
|
|
|
/* we could just use digit_2, but lets be mnemonic. */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
input_line_pointer = --digit_2; /*->1st digit. */
|
1992-06-05 03:21:58 +08:00
|
|
|
|
c = *input_line_pointer++;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
for (; (carry = hex_value[c]) < maxdig; c = *input_line_pointer++)
|
1992-06-05 03:21:58 +08:00
|
|
|
|
{
|
|
|
|
|
for (pointer = generic_bignum;
|
|
|
|
|
pointer <= leader;
|
|
|
|
|
pointer++)
|
|
|
|
|
{
|
|
|
|
|
long work;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
|
|
|
|
work = carry + radix * *pointer;
|
1992-06-05 03:21:58 +08:00
|
|
|
|
*pointer = work & LITTLENUM_MASK;
|
|
|
|
|
carry = work >> LITTLENUM_NUMBER_OF_BITS;
|
|
|
|
|
}
|
|
|
|
|
if (carry)
|
|
|
|
|
{
|
|
|
|
|
if (leader < generic_bignum + SIZE_OF_LARGE_NUMBER - 1)
|
1992-12-29 02:37:21 +08:00
|
|
|
|
{ /* room to grow a longer bignum. */
|
1992-06-05 03:21:58 +08:00
|
|
|
|
*++leader = carry;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* again, c is char after number, */
|
|
|
|
|
/* input_line_pointer->after c. */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
know (sizeof (int) * 8 == 32);
|
|
|
|
|
know (LITTLENUM_NUMBER_OF_BITS == 16);
|
1992-06-05 03:21:58 +08:00
|
|
|
|
/* hence the constant "2" in the next line. */
|
|
|
|
|
if (leader < generic_bignum + 2)
|
1992-12-29 02:37:21 +08:00
|
|
|
|
{ /* will fit into 32 bits. */
|
1992-06-05 03:21:58 +08:00
|
|
|
|
number =
|
1992-12-29 02:37:21 +08:00
|
|
|
|
((generic_bignum[1] & LITTLENUM_MASK) << LITTLENUM_NUMBER_OF_BITS)
|
|
|
|
|
| (generic_bignum[0] & LITTLENUM_MASK);
|
1992-06-05 03:21:58 +08:00
|
|
|
|
small = 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
number = leader - generic_bignum + 1; /* number of littlenums in the bignum. */
|
1992-02-23 04:45:24 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
1992-12-29 02:37:21 +08:00
|
|
|
|
if (small)
|
|
|
|
|
{
|
1992-06-05 03:21:58 +08:00
|
|
|
|
/*
|
1992-12-29 02:37:21 +08:00
|
|
|
|
* here with number, in correct radix. c is the next char.
|
|
|
|
|
* note that unlike un*x, we allow "011f" "0x9f" to
|
|
|
|
|
* both mean the same as the (conventional) "9f". this is simply easier
|
|
|
|
|
* than checking for strict canonical form. syntax sux!
|
1992-06-05 03:21:58 +08:00
|
|
|
|
*/
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
|
|
|
|
switch (c)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
#ifdef LOCAL_LABELS_FB
|
|
|
|
|
case 'b':
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* backward ref to local label.
|
|
|
|
|
* because it is backward, expect it to be defined.
|
|
|
|
|
*/
|
|
|
|
|
/* Construct a local label. */
|
|
|
|
|
name = fb_label_name ((int) number, 0);
|
|
|
|
|
|
|
|
|
|
/* seen before, or symbol is defined: ok */
|
|
|
|
|
symbolP = symbol_find (name);
|
|
|
|
|
if ((symbolP != NULL) && (S_IS_DEFINED (symbolP)))
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* local labels are never absolute. don't waste time
|
|
|
|
|
checking absoluteness. */
|
|
|
|
|
know (SEG_NORMAL (S_GET_SEGMENT (symbolP)));
|
|
|
|
|
|
|
|
|
|
expressionP->X_add_symbol = symbolP;
|
|
|
|
|
expressionP->X_seg = S_GET_SEGMENT (symbolP);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{ /* either not seen or not defined. */
|
|
|
|
|
as_bad ("backw. ref to unknown label \"%d:\", 0 assumed.", number);
|
1993-03-13 04:01:28 +08:00
|
|
|
|
expressionP->X_seg = absolute_section;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
expressionP->X_add_number = 0;
|
|
|
|
|
break;
|
|
|
|
|
} /* case 'b' */
|
|
|
|
|
|
|
|
|
|
case 'f':
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* forward reference. expect symbol to be undefined or
|
|
|
|
|
* unknown. undefined: seen it before. unknown: never seen
|
|
|
|
|
* it before.
|
|
|
|
|
* construct a local label name, then an undefined symbol.
|
|
|
|
|
* don't create a xseg frag for it: caller may do that.
|
|
|
|
|
* just return it as never seen before.
|
|
|
|
|
*/
|
|
|
|
|
name = fb_label_name ((int) number, 1);
|
|
|
|
|
symbolP = symbol_find_or_make (name);
|
|
|
|
|
/* we have no need to check symbol properties. */
|
1992-02-23 04:45:24 +08:00
|
|
|
|
#ifndef many_segments
|
1992-12-29 02:37:21 +08:00
|
|
|
|
/* since "know" puts its arg into a "string", we
|
|
|
|
|
can't have newlines in the argument. */
|
1993-03-13 04:01:28 +08:00
|
|
|
|
know (S_GET_SEGMENT (symbolP) == undefined_section || S_GET_SEGMENT (symbolP) == text_section || S_GET_SEGMENT (symbolP) == data_section);
|
1992-02-23 04:45:24 +08:00
|
|
|
|
#endif
|
1992-12-29 02:37:21 +08:00
|
|
|
|
expressionP->X_add_symbol = symbolP;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
expressionP->X_seg = undefined_section;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
expressionP->X_subtract_symbol = NULL;
|
|
|
|
|
expressionP->X_add_number = 0;
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
} /* case 'f' */
|
|
|
|
|
|
1992-06-05 03:21:58 +08:00
|
|
|
|
#endif /* LOCAL_LABELS_FB */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
1992-06-05 03:21:58 +08:00
|
|
|
|
#ifdef LOCAL_LABELS_DOLLAR
|
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
case '$':
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* If the dollar label is *currently* defined, then this is just
|
|
|
|
|
another reference to it. If it is not *currently* defined,
|
|
|
|
|
then this is a fresh instantiation of that number, so create
|
|
|
|
|
it. */
|
|
|
|
|
|
|
|
|
|
if (dollar_label_defined (number))
|
|
|
|
|
{
|
|
|
|
|
name = dollar_label_name (number, 0);
|
|
|
|
|
symbolP = symbol_find (name);
|
|
|
|
|
know (symbolP != NULL);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
name = dollar_label_name (number, 1);
|
|
|
|
|
symbolP = symbol_find_or_make (name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
expressionP->X_add_symbol = symbolP;
|
|
|
|
|
expressionP->X_add_number = 0;
|
|
|
|
|
expressionP->X_seg = S_GET_SEGMENT (symbolP);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
} /* case '$' */
|
|
|
|
|
|
1992-06-05 03:21:58 +08:00
|
|
|
|
#endif /* LOCAL_LABELS_DOLLAR */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
{
|
|
|
|
|
expressionP->X_add_number = number;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
expressionP->X_seg = absolute_section;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
input_line_pointer--; /* restore following character. */
|
|
|
|
|
break;
|
|
|
|
|
} /* really just a number */
|
|
|
|
|
|
|
|
|
|
} /* switch on char following the number */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{ /* not a small number */
|
1992-02-23 04:45:24 +08:00
|
|
|
|
expressionP->X_add_number = number;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
expressionP->X_seg = big_section;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
input_line_pointer--; /*->char following number. */
|
|
|
|
|
} /* if (small) */
|
|
|
|
|
} /* integer_constant() */
|
1992-02-23 04:45:24 +08:00
|
|
|
|
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
/*
|
|
|
|
|
* Summary of operand().
|
|
|
|
|
*
|
|
|
|
|
* in: Input_line_pointer points to 1st char of operand, which may
|
|
|
|
|
* be a space.
|
|
|
|
|
*
|
|
|
|
|
* out: A expressionS. X_seg determines how to understand the rest of the
|
|
|
|
|
* expressionS.
|
|
|
|
|
* The operand may have been empty: in this case X_seg == SEG_ABSENT.
|
|
|
|
|
* Input_line_pointer->(next non-blank) char after operand.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
1992-02-23 04:45:24 +08:00
|
|
|
|
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
static segT
|
1992-02-23 04:45:24 +08:00
|
|
|
|
operand (expressionP)
|
1992-12-29 02:37:21 +08:00
|
|
|
|
register expressionS *expressionP;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-02-23 04:45:24 +08:00
|
|
|
|
register char c;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
register symbolS *symbolP; /* points to symbol */
|
|
|
|
|
register char *name; /* points to name of symbol */
|
1992-02-23 04:45:24 +08:00
|
|
|
|
/* invented for humans only, hope */
|
|
|
|
|
/* optimising compiler flushes it! */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
register short int radix; /* 2, 8, 10 or 16, 0 when floating */
|
1992-02-23 04:45:24 +08:00
|
|
|
|
/* 0 means we saw start of a floating- */
|
|
|
|
|
/* point constant. */
|
|
|
|
|
|
|
|
|
|
/* digits, assume it is a bignum. */
|
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
SKIP_WHITESPACE (); /* leading whitespace is part of operand. */
|
|
|
|
|
c = *input_line_pointer++; /* input_line_pointer->past char in c. */
|
1992-02-23 04:45:24 +08:00
|
|
|
|
|
|
|
|
|
switch (c)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
#ifdef MRI
|
|
|
|
|
case '%':
|
|
|
|
|
integer_constant (2, expressionP);
|
1992-02-23 04:45:24 +08:00
|
|
|
|
break;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
case '@':
|
|
|
|
|
integer_constant (8, expressionP);
|
1992-02-23 04:45:24 +08:00
|
|
|
|
break;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
case '$':
|
|
|
|
|
integer_constant (16, expressionP);
|
1992-02-23 04:45:24 +08:00
|
|
|
|
break;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
#endif
|
1992-02-23 04:45:24 +08:00
|
|
|
|
case '1':
|
|
|
|
|
case '2':
|
|
|
|
|
case '3':
|
|
|
|
|
case '4':
|
|
|
|
|
case '5':
|
|
|
|
|
case '6':
|
|
|
|
|
case '7':
|
1992-12-29 02:37:21 +08:00
|
|
|
|
case '8':
|
|
|
|
|
case '9':
|
|
|
|
|
input_line_pointer--;
|
|
|
|
|
|
|
|
|
|
integer_constant (10, expressionP);
|
1992-02-23 04:45:24 +08:00
|
|
|
|
break;
|
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
case '0':
|
|
|
|
|
/* non-decimal radix */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
c = *input_line_pointer;
|
|
|
|
|
switch (c)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
if (c && strchr (FLT_CHARS, c))
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer++;
|
|
|
|
|
floating_constant (expressionP);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* The string was only zero */
|
|
|
|
|
expressionP->X_add_symbol = 0;
|
|
|
|
|
expressionP->X_add_number = 0;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
expressionP->X_seg = absolute_section;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'x':
|
|
|
|
|
case 'X':
|
|
|
|
|
input_line_pointer++;
|
|
|
|
|
integer_constant (16, expressionP);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'b':
|
|
|
|
|
#ifdef LOCAL_LABELS_FB
|
|
|
|
|
if (!*input_line_pointer
|
|
|
|
|
|| (!strchr ("+-.0123456789", *input_line_pointer)
|
|
|
|
|
&& !strchr (EXP_CHARS, *input_line_pointer)))
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer--;
|
|
|
|
|
integer_constant (10, expressionP);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
case 'B':
|
|
|
|
|
input_line_pointer++;
|
|
|
|
|
integer_constant (2, expressionP);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '0':
|
|
|
|
|
case '1':
|
|
|
|
|
case '2':
|
|
|
|
|
case '3':
|
|
|
|
|
case '4':
|
|
|
|
|
case '5':
|
|
|
|
|
case '6':
|
|
|
|
|
case '7':
|
|
|
|
|
integer_constant (8, expressionP);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'f':
|
|
|
|
|
#ifdef LOCAL_LABELS_FB
|
|
|
|
|
/* if it says '0f' and the line ends or it doesn't look like
|
1993-01-04 21:12:27 +08:00
|
|
|
|
a floating point #, its a local label ref. dtrt */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
/* likewise for the b's. xoxorich. */
|
|
|
|
|
if (c == 'f'
|
|
|
|
|
&& (!*input_line_pointer ||
|
|
|
|
|
(!strchr ("+-.0123456789", *input_line_pointer) &&
|
|
|
|
|
!strchr (EXP_CHARS, *input_line_pointer))))
|
|
|
|
|
{
|
|
|
|
|
input_line_pointer -= 1;
|
|
|
|
|
integer_constant (10, expressionP);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
case 'd':
|
|
|
|
|
case 'D':
|
|
|
|
|
case 'F':
|
|
|
|
|
case 'r':
|
|
|
|
|
case 'e':
|
|
|
|
|
case 'E':
|
|
|
|
|
case 'g':
|
|
|
|
|
case 'G':
|
|
|
|
|
|
|
|
|
|
input_line_pointer++;
|
|
|
|
|
floating_constant (expressionP);
|
1993-03-13 04:01:28 +08:00
|
|
|
|
expressionP->X_add_number = -(isupper (c) ? tolower (c) : c);
|
1992-12-29 02:37:21 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#ifdef LOCAL_LABELS_DOLLAR
|
|
|
|
|
case '$':
|
|
|
|
|
integer_constant (10, expressionP);
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
1992-02-23 04:45:24 +08:00
|
|
|
|
break;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
case '(':
|
|
|
|
|
/* didn't begin with digit & not a name */
|
|
|
|
|
{
|
|
|
|
|
(void) expression (expressionP);
|
|
|
|
|
/* Expression() will pass trailing whitespace */
|
|
|
|
|
if (*input_line_pointer++ != ')')
|
|
|
|
|
{
|
|
|
|
|
as_bad ("Missing ')' assumed");
|
|
|
|
|
input_line_pointer--;
|
|
|
|
|
}
|
|
|
|
|
/* here with input_line_pointer->char after "(...)" */
|
|
|
|
|
}
|
|
|
|
|
return expressionP->X_seg;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
|
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
case '\'':
|
1993-01-04 21:12:27 +08:00
|
|
|
|
/* Warning: to conform to other people's assemblers NO ESCAPEMENT is
|
|
|
|
|
permitted for a single quote. The next character, parity errors and
|
|
|
|
|
all, is taken as the value of the operand. VERY KINKY. */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
expressionP->X_add_number = *input_line_pointer++;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
expressionP->X_seg = absolute_section;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '~':
|
|
|
|
|
case '-':
|
|
|
|
|
case '+':
|
|
|
|
|
{
|
|
|
|
|
/* unary operator: hope for SEG_ABSOLUTE */
|
1993-03-13 04:01:28 +08:00
|
|
|
|
segT opseg = operand (expressionP);
|
|
|
|
|
if (opseg == absolute_section)
|
1992-12-29 02:37:21 +08:00
|
|
|
|
{
|
|
|
|
|
/* input_line_pointer -> char after operand */
|
|
|
|
|
if (c == '-')
|
|
|
|
|
{
|
|
|
|
|
expressionP->X_add_number = -expressionP->X_add_number;
|
1993-01-04 21:12:27 +08:00
|
|
|
|
/* Notice: '-' may overflow: no warning is given. This is
|
|
|
|
|
compatible with other people's assemblers. Sigh. */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
expressionP->X_add_number = ~expressionP->X_add_number;
|
|
|
|
|
}
|
1993-03-13 04:01:28 +08:00
|
|
|
|
}
|
|
|
|
|
else if (opseg == text_section
|
|
|
|
|
|| opseg == data_section
|
|
|
|
|
|| opseg == bss_section
|
|
|
|
|
|| opseg == pass1_section
|
|
|
|
|
|| opseg == undefined_section)
|
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
if (c == '-')
|
1993-03-13 04:01:28 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
expressionP->X_subtract_symbol = expressionP->X_add_symbol;
|
|
|
|
|
expressionP->X_add_symbol = 0;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
expressionP->X_seg = diff_section;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
}
|
1993-03-13 04:01:28 +08:00
|
|
|
|
else
|
|
|
|
|
as_warn ("Unary operator %c ignored because bad operand follows",
|
|
|
|
|
c);
|
1992-02-23 04:45:24 +08:00
|
|
|
|
}
|
1993-03-13 04:01:28 +08:00
|
|
|
|
else
|
|
|
|
|
as_warn ("Unary operator %c ignored because bad operand follows", c);
|
1992-02-23 04:45:24 +08:00
|
|
|
|
}
|
1992-12-29 02:37:21 +08:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '.':
|
|
|
|
|
if (!is_part_of_name (*input_line_pointer))
|
|
|
|
|
{
|
Wed Dec 30 10:18:57 1992 Ian Lance Taylor (ian@cygnus.com)
* app.c, config/tc-*.c: Don't include read.h, since it is already
included by as.h.
* These are based on patches from Minh Tran-le
<mtranle@paris.intellicorp.com>.
* configure.in (i[34]86-ibm-aix*): Accept i486 for host. Use
obj_format coffbfd and gas_target i386coff for target.
(i[34]86-*-isc*): New host (uses sysv).
* config/i386aix.mt: Removed (no longer used).
* config/mh-i386aix (RANLIB): Use true rather than /bin/true.
(MINUS_G): Removed.
(LDFLAGS): Added, defined as -shlib.
* config/te-i386aix.h (REVERSE_SORT_RELOCS): Undefine.
* config/te-sco386.h (LOCAL_LABEL): Don't define.
(DOT_LABEL_PREFIX): Define.
* expr.c (operand): If DOT_LABEL_PREFIX, use .L0\001 as a label
name rather than L0\001.
* read.c (s_lcomm): Make a frag in SEG_BSS rather than using
local_bss_counter.
* symbols.c, symbols.h (local_bss_counter): Removed.
* write.c (write_object_file): bss no longer uses
local_bss_counter. Pass correct data and bss size to
VMS_write_object_file.
* config/obj-vms.c (VMS_write_object_file): Accept bss size as
argument, rather than using local_bss_counter.
* config/tc-m88k.c (s_bss): Don't use local_bss_counter.
* config/tc-sparc.c (s_reserve): Don't use local_bss_counter.
* config/obj-coffbfd.c (had_lineno, had_reloc): Removed.
(size_section): Restored sanity check.
(do_relocs_for): Base section address on s_paddr rather than
computing it. Adjust a29k R_IHIHALF special case to account for
section paddr (used to require paddr to be zero). If there are no
reclos, set s_relptr to 0. Set relocation size in object_headers.
(fill_section): Always set s_vaddr here, removing
ZERO_BASED_SEGMENTS case. Force s_scnptr for bss to 0. Don't set
NOLOAD for i386 .bss, because it confuses the SVR3 native linker.
Set STYP_INFO for .comment.
(coff_header_append): Use object headers and H_{SET,GET}_* macros.
Make aouthdr writing depend on OBJ_COFF_OMIT_OPTIONAL_HEADER.
(crawl_symbols): Handle 8 character section name correctly. Use
H_{SET,GET}_* macros.
(do_linenos_for): Set lineno size in object_headers.
(write_object_file): Use H_{SET,GET}_* macros. Don't bother to
set s_vaddr here. If string_byte_count remains 4, set it back to
0, and only write strings out if there are some. Call
fill_section before do_relocs_for and do_linenos_for.
(obj_coff_section): Handle optional quoted second argument giving
section characteristics.
(obj_coff_bss): Added to handle .bss.
(obj_coff_ident): Added to handle .ident (puts string in .comment
section).
(obj_coff_lcomm): Put common symbols in .bss, not .data.
(fixup_mdeps): Change to segment. Call frag_wane after
md_convert_frag.
(fixup_segment): Explicitly check S_IS_COMMON before making 386
adjustment (already happened only for common symbols, but this is
clearer).
* config/obj-coffbfd.h (OBJ_COFF_OMIT_OPTIONAL_HEADER): Define.
* config/tc-i386.c (s_bss): Don't use if I386COFF.
(md_pseudo_table): Ignore .optim and .noopt.
(tc_coff_sizemachdep): New function.
* config/tc-i386.h (REVERSE_SORT_RELOCS): Undef, for SVR3
compatibility.
(LOCAL_LABEL): Removed definition.
(DOT_LABEL_PREFIX): Defined.
1992-12-31 04:34:14 +08:00
|
|
|
|
char *fake;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
extern struct obstack frags;
|
|
|
|
|
|
Wed Dec 30 10:18:57 1992 Ian Lance Taylor (ian@cygnus.com)
* app.c, config/tc-*.c: Don't include read.h, since it is already
included by as.h.
* These are based on patches from Minh Tran-le
<mtranle@paris.intellicorp.com>.
* configure.in (i[34]86-ibm-aix*): Accept i486 for host. Use
obj_format coffbfd and gas_target i386coff for target.
(i[34]86-*-isc*): New host (uses sysv).
* config/i386aix.mt: Removed (no longer used).
* config/mh-i386aix (RANLIB): Use true rather than /bin/true.
(MINUS_G): Removed.
(LDFLAGS): Added, defined as -shlib.
* config/te-i386aix.h (REVERSE_SORT_RELOCS): Undefine.
* config/te-sco386.h (LOCAL_LABEL): Don't define.
(DOT_LABEL_PREFIX): Define.
* expr.c (operand): If DOT_LABEL_PREFIX, use .L0\001 as a label
name rather than L0\001.
* read.c (s_lcomm): Make a frag in SEG_BSS rather than using
local_bss_counter.
* symbols.c, symbols.h (local_bss_counter): Removed.
* write.c (write_object_file): bss no longer uses
local_bss_counter. Pass correct data and bss size to
VMS_write_object_file.
* config/obj-vms.c (VMS_write_object_file): Accept bss size as
argument, rather than using local_bss_counter.
* config/tc-m88k.c (s_bss): Don't use local_bss_counter.
* config/tc-sparc.c (s_reserve): Don't use local_bss_counter.
* config/obj-coffbfd.c (had_lineno, had_reloc): Removed.
(size_section): Restored sanity check.
(do_relocs_for): Base section address on s_paddr rather than
computing it. Adjust a29k R_IHIHALF special case to account for
section paddr (used to require paddr to be zero). If there are no
reclos, set s_relptr to 0. Set relocation size in object_headers.
(fill_section): Always set s_vaddr here, removing
ZERO_BASED_SEGMENTS case. Force s_scnptr for bss to 0. Don't set
NOLOAD for i386 .bss, because it confuses the SVR3 native linker.
Set STYP_INFO for .comment.
(coff_header_append): Use object headers and H_{SET,GET}_* macros.
Make aouthdr writing depend on OBJ_COFF_OMIT_OPTIONAL_HEADER.
(crawl_symbols): Handle 8 character section name correctly. Use
H_{SET,GET}_* macros.
(do_linenos_for): Set lineno size in object_headers.
(write_object_file): Use H_{SET,GET}_* macros. Don't bother to
set s_vaddr here. If string_byte_count remains 4, set it back to
0, and only write strings out if there are some. Call
fill_section before do_relocs_for and do_linenos_for.
(obj_coff_section): Handle optional quoted second argument giving
section characteristics.
(obj_coff_bss): Added to handle .bss.
(obj_coff_ident): Added to handle .ident (puts string in .comment
section).
(obj_coff_lcomm): Put common symbols in .bss, not .data.
(fixup_mdeps): Change to segment. Call frag_wane after
md_convert_frag.
(fixup_segment): Explicitly check S_IS_COMMON before making 386
adjustment (already happened only for common symbols, but this is
clearer).
* config/obj-coffbfd.h (OBJ_COFF_OMIT_OPTIONAL_HEADER): Define.
* config/tc-i386.c (s_bss): Don't use if I386COFF.
(md_pseudo_table): Ignore .optim and .noopt.
(tc_coff_sizemachdep): New function.
* config/tc-i386.h (REVERSE_SORT_RELOCS): Undef, for SVR3
compatibility.
(LOCAL_LABEL): Removed definition.
(DOT_LABEL_PREFIX): Defined.
1992-12-31 04:34:14 +08:00
|
|
|
|
/* JF: '.' is pseudo symbol with value of current location
|
|
|
|
|
in current segment. */
|
|
|
|
|
#ifdef DOT_LABEL_PREFIX
|
|
|
|
|
fake = ".L0\001";
|
|
|
|
|
#else
|
|
|
|
|
fake = "L0\001";
|
|
|
|
|
#endif
|
|
|
|
|
symbolP = symbol_new (fake,
|
1992-12-29 02:37:21 +08:00
|
|
|
|
now_seg,
|
|
|
|
|
(valueT) (obstack_next_free (&frags) - frag_now->fr_literal),
|
|
|
|
|
frag_now);
|
1992-02-23 04:45:24 +08:00
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
expressionP->X_add_number = 0;
|
|
|
|
|
expressionP->X_add_symbol = symbolP;
|
|
|
|
|
expressionP->X_seg = now_seg;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
goto isname;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
case ',':
|
|
|
|
|
case '\n':
|
1993-03-13 04:01:28 +08:00
|
|
|
|
case '\0':
|
1993-01-05 22:17:21 +08:00
|
|
|
|
eol:
|
1992-12-29 02:37:21 +08:00
|
|
|
|
/* can't imagine any other kind of operand */
|
1993-03-13 04:01:28 +08:00
|
|
|
|
expressionP->X_seg = absent_section;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
input_line_pointer--;
|
|
|
|
|
md_operand (expressionP);
|
|
|
|
|
break;
|
1993-01-05 22:17:21 +08:00
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
default:
|
1993-01-05 22:17:21 +08:00
|
|
|
|
if (is_end_of_line[c])
|
|
|
|
|
goto eol;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
if (is_name_beginner (c)) /* here if did not begin with a digit */
|
|
|
|
|
{
|
|
|
|
|
/*
|
1993-01-04 21:12:27 +08:00
|
|
|
|
* Identifier begins here.
|
|
|
|
|
* This is kludged for speed, so code is repeated.
|
|
|
|
|
*/
|
1992-12-29 02:37:21 +08:00
|
|
|
|
isname:
|
|
|
|
|
name = --input_line_pointer;
|
|
|
|
|
c = get_symbol_end ();
|
|
|
|
|
symbolP = symbol_find_or_make (name);
|
1993-01-04 21:12:27 +08:00
|
|
|
|
/* If we have an absolute symbol or a reg, then we know its value
|
|
|
|
|
now. */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
expressionP->X_seg = S_GET_SEGMENT (symbolP);
|
1993-03-13 04:01:28 +08:00
|
|
|
|
if (expressionP->X_seg == absolute_section
|
|
|
|
|
|| expressionP->X_seg == reg_section)
|
|
|
|
|
expressionP->X_add_number = S_GET_VALUE (symbolP);
|
|
|
|
|
else
|
1992-12-29 02:37:21 +08:00
|
|
|
|
{
|
|
|
|
|
expressionP->X_add_number = 0;
|
|
|
|
|
expressionP->X_add_symbol = symbolP;
|
|
|
|
|
}
|
|
|
|
|
*input_line_pointer = c;
|
|
|
|
|
expressionP->X_subtract_symbol = NULL;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
as_bad ("Bad expression");
|
|
|
|
|
expressionP->X_add_number = 0;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
expressionP->X_seg = absolute_section;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* It is more 'efficient' to clean up the expressionS when they are created.
|
|
|
|
|
* Doing it here saves lines of code.
|
|
|
|
|
*/
|
|
|
|
|
clean_up_expression (expressionP);
|
1992-12-29 02:37:21 +08:00
|
|
|
|
SKIP_WHITESPACE (); /*->1st char after operand. */
|
|
|
|
|
know (*input_line_pointer != ' ');
|
1992-02-23 04:45:24 +08:00
|
|
|
|
return (expressionP->X_seg);
|
1992-12-29 02:37:21 +08:00
|
|
|
|
} /* operand() */
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
/* Internal. Simplify a struct expression for use by expr() */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* In: address of a expressionS.
|
|
|
|
|
* The X_seg field of the expressionS may only take certain values.
|
|
|
|
|
* Now, we permit SEG_PASS1 to make code smaller & faster.
|
|
|
|
|
* Elsewise we waste time special-case testing. Sigh. Ditto SEG_ABSENT.
|
|
|
|
|
* Out: expressionS may have been modified:
|
|
|
|
|
* 'foo-foo' symbol references cancelled to 0,
|
|
|
|
|
* which changes X_seg from SEG_DIFFERENCE to SEG_ABSOLUTE;
|
|
|
|
|
* Unused fields zeroed to help expr().
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static void
|
1992-02-23 04:45:24 +08:00
|
|
|
|
clean_up_expression (expressionP)
|
1992-12-29 02:37:21 +08:00
|
|
|
|
register expressionS *expressionP;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1993-03-13 04:01:28 +08:00
|
|
|
|
segT s = expressionP->X_seg;
|
|
|
|
|
if (s == absent_section
|
|
|
|
|
|| s == pass1_section)
|
1992-12-29 02:37:21 +08:00
|
|
|
|
{
|
|
|
|
|
expressionP->X_add_symbol = NULL;
|
|
|
|
|
expressionP->X_subtract_symbol = NULL;
|
|
|
|
|
expressionP->X_add_number = 0;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
}
|
|
|
|
|
else if (s == big_section
|
|
|
|
|
|| s == absolute_section)
|
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
expressionP->X_subtract_symbol = NULL;
|
|
|
|
|
expressionP->X_add_symbol = NULL;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
}
|
|
|
|
|
else if (s == undefined_section)
|
|
|
|
|
expressionP->X_subtract_symbol = NULL;
|
|
|
|
|
else if (s == diff_section)
|
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
/*
|
1993-03-13 04:01:28 +08:00
|
|
|
|
* It does not hurt to 'cancel' NULL==NULL
|
|
|
|
|
* when comparing symbols for 'eq'ness.
|
|
|
|
|
* It is faster to re-cancel them to NULL
|
|
|
|
|
* than to check for this special case.
|
|
|
|
|
*/
|
1992-12-29 02:37:21 +08:00
|
|
|
|
if (expressionP->X_subtract_symbol == expressionP->X_add_symbol
|
|
|
|
|
|| (expressionP->X_subtract_symbol
|
|
|
|
|
&& expressionP->X_add_symbol
|
|
|
|
|
&& expressionP->X_subtract_symbol->sy_frag == expressionP->X_add_symbol->sy_frag
|
|
|
|
|
&& S_GET_VALUE (expressionP->X_subtract_symbol) == S_GET_VALUE (expressionP->X_add_symbol)))
|
|
|
|
|
{
|
|
|
|
|
expressionP->X_subtract_symbol = NULL;
|
|
|
|
|
expressionP->X_add_symbol = NULL;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
expressionP->X_seg = absolute_section;
|
1992-02-13 16:33:54 +08:00
|
|
|
|
}
|
1993-03-13 04:01:28 +08:00
|
|
|
|
}
|
|
|
|
|
else if (s == reg_section)
|
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
expressionP->X_add_symbol = NULL;
|
|
|
|
|
expressionP->X_subtract_symbol = NULL;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
if (SEG_NORMAL (expressionP->X_seg))
|
|
|
|
|
{
|
|
|
|
|
expressionP->X_subtract_symbol = NULL;
|
1992-02-13 16:33:54 +08:00
|
|
|
|
}
|
1992-12-29 02:37:21 +08:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
BAD_CASE (expressionP->X_seg);
|
1992-02-13 16:33:54 +08:00
|
|
|
|
}
|
1992-12-29 02:37:21 +08:00
|
|
|
|
}
|
1993-03-13 04:01:28 +08:00
|
|
|
|
}
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* expr_part ()
|
|
|
|
|
*
|
|
|
|
|
* Internal. Made a function because this code is used in 2 places.
|
|
|
|
|
* Generate error or correct X_?????_symbol of expressionS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* symbol_1 += symbol_2 ... well ... sort of.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static segT
|
1992-02-23 04:45:24 +08:00
|
|
|
|
expr_part (symbol_1_PP, symbol_2_P)
|
1992-12-29 02:37:21 +08:00
|
|
|
|
symbolS **symbol_1_PP;
|
|
|
|
|
symbolS *symbol_2_P;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
segT return_value;
|
1992-02-13 16:33:54 +08:00
|
|
|
|
#ifndef MANY_SEGMENTS
|
1993-03-13 04:01:28 +08:00
|
|
|
|
assert ((*symbol_1_PP) == NULL \
|
|
|
|
|
|| (S_GET_SEGMENT (*symbol_1_PP) == text_section) \
|
|
|
|
|
|| (S_GET_SEGMENT (*symbol_1_PP) == data_section) \
|
|
|
|
|
|| (S_GET_SEGMENT (*symbol_1_PP) == bss_section) \
|
|
|
|
|
|| (!S_IS_DEFINED (*symbol_1_PP)));
|
|
|
|
|
assert (symbol_2_P == NULL \
|
|
|
|
|
|| (S_GET_SEGMENT (symbol_2_P) == text_section) \
|
|
|
|
|
|| (S_GET_SEGMENT (symbol_2_P) == data_section) \
|
|
|
|
|
|| (S_GET_SEGMENT (symbol_2_P) == bss_section) \
|
|
|
|
|
|| (!S_IS_DEFINED (symbol_2_P)));
|
1992-02-13 16:33:54 +08:00
|
|
|
|
#endif
|
1992-12-29 02:37:21 +08:00
|
|
|
|
if (*symbol_1_PP)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
if (!S_IS_DEFINED (*symbol_1_PP))
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-02-23 04:45:24 +08:00
|
|
|
|
if (symbol_2_P)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1993-03-13 04:01:28 +08:00
|
|
|
|
return_value = pass1_section;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
*symbol_1_PP = NULL;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
else
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
know (!S_IS_DEFINED (*symbol_1_PP));
|
1993-03-13 04:01:28 +08:00
|
|
|
|
return_value = undefined_section;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
else
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-02-23 04:45:24 +08:00
|
|
|
|
if (symbol_2_P)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
if (!S_IS_DEFINED (symbol_2_P))
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
*symbol_1_PP = NULL;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
return_value = pass1_section;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
else
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-02-23 04:45:24 +08:00
|
|
|
|
/* {seg1} - {seg2} */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
as_bad ("Expression too complex, 2 symbolS forgotten: \"%s\" \"%s\"",
|
|
|
|
|
S_GET_NAME (*symbol_1_PP), S_GET_NAME (symbol_2_P));
|
|
|
|
|
*symbol_1_PP = NULL;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
return_value = absolute_section;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
else
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
return_value = S_GET_SEGMENT (*symbol_1_PP);
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
else
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{ /* (* symbol_1_PP) == NULL */
|
1992-02-23 04:45:24 +08:00
|
|
|
|
if (symbol_2_P)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
*symbol_1_PP = symbol_2_P;
|
|
|
|
|
return_value = S_GET_SEGMENT (symbol_2_P);
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
else
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
*symbol_1_PP = NULL;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
return_value = absolute_section;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
1992-02-13 16:33:54 +08:00
|
|
|
|
#ifndef MANY_SEGMENTS
|
1993-03-13 04:01:28 +08:00
|
|
|
|
assert (return_value == absolute_section \
|
|
|
|
|
|| return_value == text_section \
|
|
|
|
|
|| return_value == data_section \
|
|
|
|
|
|| return_value == bss_section \
|
|
|
|
|
|| return_value == undefined_section \
|
|
|
|
|
|| return_value == pass1_section);
|
1992-02-13 16:33:54 +08:00
|
|
|
|
#endif
|
1993-03-13 04:01:28 +08:00
|
|
|
|
know ((*symbol_1_PP) == NULL
|
|
|
|
|
|| (S_GET_SEGMENT (*symbol_1_PP) == return_value));
|
1992-02-23 04:45:24 +08:00
|
|
|
|
return (return_value);
|
1993-03-13 04:01:28 +08:00
|
|
|
|
}
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
/* Expression parser. */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* We allow an empty expression, and just assume (absolute,0) silently.
|
|
|
|
|
* Unary operators and parenthetical expressions are treated as operands.
|
|
|
|
|
* As usual, Q==quantity==operand, O==operator, X==expression mnemonics.
|
|
|
|
|
*
|
|
|
|
|
* We used to do a aho/ullman shift-reduce parser, but the logic got so
|
|
|
|
|
* warped that I flushed it and wrote a recursive-descent parser instead.
|
|
|
|
|
* Now things are stable, would anybody like to write a fast parser?
|
|
|
|
|
* Most expressions are either register (which does not even reach here)
|
|
|
|
|
* or 1 symbol. Then "symbol+constant" and "symbol-symbol" are common.
|
|
|
|
|
* So I guess it doesn't really matter how inefficient more complex expressions
|
|
|
|
|
* are parsed.
|
|
|
|
|
*
|
|
|
|
|
* After expr(RANK,resultP) input_line_pointer->operator of rank <= RANK.
|
|
|
|
|
* Also, we have consumed any leading or trailing spaces (operand does that)
|
|
|
|
|
* and done all intervening operators.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
O_illegal, /* (0) what we get for illegal op */
|
|
|
|
|
|
|
|
|
|
O_multiply, /* (1) * */
|
|
|
|
|
O_divide, /* (2) / */
|
|
|
|
|
O_modulus, /* (3) % */
|
|
|
|
|
O_left_shift, /* (4) < */
|
|
|
|
|
O_right_shift, /* (5) > */
|
|
|
|
|
O_bit_inclusive_or, /* (6) | */
|
|
|
|
|
O_bit_or_not, /* (7) ! */
|
|
|
|
|
O_bit_exclusive_or, /* (8) ^ */
|
|
|
|
|
O_bit_and, /* (9) & */
|
|
|
|
|
O_add, /* (10) + */
|
|
|
|
|
O_subtract /* (11) - */
|
|
|
|
|
}
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
operatorT;
|
|
|
|
|
|
|
|
|
|
#define __ O_illegal
|
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
static const operatorT op_encoding[256] =
|
|
|
|
|
{ /* maps ASCII->operators */
|
|
|
|
|
|
|
|
|
|
__, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
|
|
|
|
|
__, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
|
|
|
|
|
|
|
|
|
|
__, O_bit_or_not, __, __, __, O_modulus, O_bit_and, __,
|
|
|
|
|
__, __, O_multiply, O_add, __, O_subtract, __, O_divide,
|
|
|
|
|
__, __, __, __, __, __, __, __,
|
|
|
|
|
__, __, __, __, O_left_shift, __, O_right_shift, __,
|
|
|
|
|
__, __, __, __, __, __, __, __,
|
|
|
|
|
__, __, __, __, __, __, __, __,
|
|
|
|
|
__, __, __, __, __, __, __, __,
|
|
|
|
|
__, __, __, __, __, __, O_bit_exclusive_or, __,
|
|
|
|
|
__, __, __, __, __, __, __, __,
|
|
|
|
|
__, __, __, __, __, __, __, __,
|
|
|
|
|
__, __, __, __, __, __, __, __,
|
|
|
|
|
__, __, __, __, O_bit_inclusive_or, __, __, __,
|
|
|
|
|
|
|
|
|
|
__, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
|
|
|
|
|
__, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
|
|
|
|
|
__, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
|
|
|
|
|
__, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
|
|
|
|
|
__, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
|
|
|
|
|
__, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
|
|
|
|
|
__, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __,
|
|
|
|
|
__, __, __, __, __, __, __, __, __, __, __, __, __, __, __, __
|
|
|
|
|
};
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Rank Examples
|
|
|
|
|
* 0 operand, (expression)
|
|
|
|
|
* 1 + -
|
|
|
|
|
* 2 & ^ ! |
|
|
|
|
|
* 3 * / % << >>
|
|
|
|
|
*/
|
|
|
|
|
static const operator_rankT
|
1992-12-29 02:37:21 +08:00
|
|
|
|
op_rank[] =
|
|
|
|
|
{0, 3, 3, 3, 3, 3, 2, 2, 2, 2, 1, 1};
|
1991-04-05 02:19:53 +08:00
|
|
|
|
|
|
|
|
|
/* Return resultP->X_seg. */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
segT
|
|
|
|
|
expr (rank, resultP)
|
|
|
|
|
register operator_rankT rank; /* Larger # is higher rank. */
|
|
|
|
|
register expressionS *resultP; /* Deliver result here. */
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
expressionS right;
|
|
|
|
|
register operatorT op_left;
|
|
|
|
|
register char c_left; /* 1st operator character. */
|
|
|
|
|
register operatorT op_right;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
register char c_right;
|
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
know (rank >= 0);
|
|
|
|
|
(void) operand (resultP);
|
|
|
|
|
know (*input_line_pointer != ' '); /* Operand() gobbles spaces. */
|
|
|
|
|
c_left = *input_line_pointer; /* Potential operator character. */
|
|
|
|
|
op_left = op_encoding[c_left];
|
|
|
|
|
while (op_left != O_illegal && op_rank[(int) op_left] > rank)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
input_line_pointer++; /*->after 1st character of operator. */
|
|
|
|
|
/* Operators "<<" and ">>" have 2 characters. */
|
|
|
|
|
if (*input_line_pointer == c_left && (c_left == '<' || c_left == '>'))
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
input_line_pointer++;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
} /*->after operator. */
|
1993-03-13 04:01:28 +08:00
|
|
|
|
if (absent_section == expr (op_rank[(int) op_left], &right))
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
as_warn ("Missing operand value assumed absolute 0.");
|
|
|
|
|
resultP->X_add_number = 0;
|
|
|
|
|
resultP->X_subtract_symbol = NULL;
|
|
|
|
|
resultP->X_add_symbol = NULL;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
resultP->X_seg = absolute_section;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1992-12-29 02:37:21 +08:00
|
|
|
|
know (*input_line_pointer != ' ');
|
|
|
|
|
c_right = *input_line_pointer;
|
|
|
|
|
op_right = op_encoding[c_right];
|
|
|
|
|
if (*input_line_pointer == c_right && (c_right == '<' || c_right == '>'))
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
input_line_pointer++;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
} /*->after operator. */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
know ((int) op_right == 0 || op_rank[(int) op_right] <= op_rank[(int) op_left]);
|
1992-02-23 04:45:24 +08:00
|
|
|
|
/* input_line_pointer->after right-hand quantity. */
|
|
|
|
|
/* left-hand quantity in resultP */
|
|
|
|
|
/* right-hand quantity in right. */
|
|
|
|
|
/* operator in op_left. */
|
1993-03-13 04:01:28 +08:00
|
|
|
|
if (resultP->X_seg == pass1_section || right.X_seg == pass1_section)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1993-03-13 04:01:28 +08:00
|
|
|
|
resultP->X_seg = pass1_section;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
else
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1993-03-13 04:01:28 +08:00
|
|
|
|
if (resultP->X_seg == big_section)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
as_warn ("Left operand of %c is a %s. Integer 0 assumed.",
|
|
|
|
|
c_left, resultP->X_add_number > 0 ? "bignum" : "float");
|
1993-03-13 04:01:28 +08:00
|
|
|
|
resultP->X_seg = absolute_section;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
resultP->X_add_symbol = 0;
|
|
|
|
|
resultP->X_subtract_symbol = 0;
|
|
|
|
|
resultP->X_add_number = 0;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1993-03-13 04:01:28 +08:00
|
|
|
|
if (right.X_seg == big_section)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
as_warn ("Right operand of %c is a %s. Integer 0 assumed.",
|
|
|
|
|
c_left, right.X_add_number > 0 ? "bignum" : "float");
|
1993-03-13 04:01:28 +08:00
|
|
|
|
right.X_seg = absolute_section;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
right.X_add_symbol = 0;
|
|
|
|
|
right.X_subtract_symbol = 0;
|
|
|
|
|
right.X_add_number = 0;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
if (op_left == O_subtract)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-02-23 04:45:24 +08:00
|
|
|
|
/*
|
|
|
|
|
* Convert - into + by exchanging symbolS and negating number.
|
|
|
|
|
* I know -infinity can't be negated in 2's complement:
|
|
|
|
|
* but then it can't be subtracted either. This trick
|
|
|
|
|
* does not cause any further inaccuracy.
|
|
|
|
|
*/
|
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
register symbolS *symbolP;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
right.X_add_number = -right.X_add_number;
|
|
|
|
|
symbolP = right.X_add_symbol;
|
|
|
|
|
right.X_add_symbol = right.X_subtract_symbol;
|
|
|
|
|
right.X_subtract_symbol = symbolP;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
if (symbolP)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1993-03-13 04:01:28 +08:00
|
|
|
|
right.X_seg = diff_section;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
op_left = O_add;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
|
|
|
|
|
if (op_left == O_add)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
segT seg1;
|
|
|
|
|
segT seg2;
|
1992-02-13 16:33:54 +08:00
|
|
|
|
#ifndef MANY_SEGMENTS
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
1993-03-13 04:01:28 +08:00
|
|
|
|
know (resultP->X_seg == data_section || resultP->X_seg == text_section || resultP->X_seg == bss_section || resultP->X_seg == undefined_section || resultP->X_seg == diff_section || resultP->X_seg == absolute_section || resultP->X_seg == pass1_section || resultP->X_seg == reg_section);
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
1993-03-13 04:01:28 +08:00
|
|
|
|
know (right.X_seg == data_section || right.X_seg == text_section || right.X_seg == bss_section || right.X_seg == undefined_section || right.X_seg == diff_section || right.X_seg == absolute_section || right.X_seg == pass1_section);
|
1992-02-13 16:33:54 +08:00
|
|
|
|
#endif
|
1992-12-29 02:37:21 +08:00
|
|
|
|
clean_up_expression (&right);
|
1992-02-23 04:45:24 +08:00
|
|
|
|
clean_up_expression (resultP);
|
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
seg1 = expr_part (&resultP->X_add_symbol, right.X_add_symbol);
|
|
|
|
|
seg2 = expr_part (&resultP->X_subtract_symbol, right.X_subtract_symbol);
|
1993-03-13 04:01:28 +08:00
|
|
|
|
if (seg1 == pass1_section || seg2 == pass1_section)
|
1992-12-29 02:37:21 +08:00
|
|
|
|
{
|
|
|
|
|
need_pass_2 = 1;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
resultP->X_seg = pass1_section;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
}
|
1993-03-13 04:01:28 +08:00
|
|
|
|
else if (seg2 == absolute_section)
|
1992-12-29 02:37:21 +08:00
|
|
|
|
resultP->X_seg = seg1;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
else if (seg1 != undefined_section
|
|
|
|
|
&& seg1 != absolute_section
|
|
|
|
|
&& seg2 != undefined_section
|
1992-12-29 02:37:21 +08:00
|
|
|
|
&& seg1 != seg2)
|
|
|
|
|
{
|
1993-03-13 04:01:28 +08:00
|
|
|
|
know (seg2 != absolute_section);
|
1992-12-29 02:37:21 +08:00
|
|
|
|
know (resultP->X_subtract_symbol);
|
1992-02-13 16:33:54 +08:00
|
|
|
|
#ifndef MANY_SEGMENTS
|
1993-03-13 04:01:28 +08:00
|
|
|
|
know (seg1 == text_section || seg1 == data_section || seg1 == bss_section);
|
|
|
|
|
know (seg2 == text_section || seg2 == data_section || seg2 == bss_section);
|
1992-02-13 16:33:54 +08:00
|
|
|
|
#endif
|
1992-12-29 02:37:21 +08:00
|
|
|
|
know (resultP->X_add_symbol);
|
|
|
|
|
know (resultP->X_subtract_symbol);
|
|
|
|
|
as_bad ("Expression too complex: forgetting %s - %s",
|
|
|
|
|
S_GET_NAME (resultP->X_add_symbol),
|
|
|
|
|
S_GET_NAME (resultP->X_subtract_symbol));
|
1993-03-13 04:01:28 +08:00
|
|
|
|
resultP->X_seg = absolute_section;
|
1992-12-29 02:37:21 +08:00
|
|
|
|
/* Clean_up_expression() will do the rest. */
|
|
|
|
|
}
|
|
|
|
|
else
|
1993-03-13 04:01:28 +08:00
|
|
|
|
resultP->X_seg = diff_section;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
resultP->X_add_number += right.X_add_number;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
clean_up_expression (resultP);
|
1992-12-29 02:37:21 +08:00
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
else
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{ /* Not +. */
|
1993-03-13 04:01:28 +08:00
|
|
|
|
if (resultP->X_seg == undefined_section || right.X_seg == undefined_section)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1993-03-13 04:01:28 +08:00
|
|
|
|
resultP->X_seg = pass1_section;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
need_pass_2 = 1;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
else
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-02-23 04:45:24 +08:00
|
|
|
|
resultP->X_subtract_symbol = NULL;
|
|
|
|
|
resultP->X_add_symbol = NULL;
|
1993-03-13 04:01:28 +08:00
|
|
|
|
/* Will be absolute_section. */
|
|
|
|
|
if (resultP->X_seg != absolute_section || right.X_seg != absolute_section)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
as_bad ("Relocation error. Absolute 0 assumed.");
|
1993-03-13 04:01:28 +08:00
|
|
|
|
resultP->X_seg = absolute_section;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
resultP->X_add_number = 0;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
else
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-02-23 04:45:24 +08:00
|
|
|
|
switch (op_left)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
|
|
|
|
case O_bit_inclusive_or:
|
1992-12-29 02:37:21 +08:00
|
|
|
|
resultP->X_add_number |= right.X_add_number;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
break;
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
case O_modulus:
|
1992-12-29 02:37:21 +08:00
|
|
|
|
if (right.X_add_number)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
resultP->X_add_number %= right.X_add_number;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
else
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
as_warn ("Division by 0. 0 assumed.");
|
1992-02-23 04:45:24 +08:00
|
|
|
|
resultP->X_add_number = 0;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
break;
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
case O_bit_and:
|
1992-12-29 02:37:21 +08:00
|
|
|
|
resultP->X_add_number &= right.X_add_number;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
break;
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
case O_multiply:
|
1992-12-29 02:37:21 +08:00
|
|
|
|
resultP->X_add_number *= right.X_add_number;
|
1992-02-23 04:45:24 +08:00
|
|
|
|
break;
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
case O_divide:
|
1992-12-29 02:37:21 +08:00
|
|
|
|
if (right.X_add_number)
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
resultP->X_add_number /= right.X_add_number;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1992-02-23 04:45:24 +08:00
|
|
|
|
else
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
as_warn ("Division by 0. 0 assumed.");
|
|
|
|
|
resultP->X_add_number = 0;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
1992-12-29 02:37:21 +08:00
|
|
|
|
break;
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
case O_left_shift:
|
1992-12-29 02:37:21 +08:00
|
|
|
|
resultP->X_add_number <<= right.X_add_number;
|
|
|
|
|
break;
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
case O_right_shift:
|
1992-12-29 02:37:21 +08:00
|
|
|
|
resultP->X_add_number >>= right.X_add_number;
|
|
|
|
|
break;
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
case O_bit_exclusive_or:
|
1992-12-29 02:37:21 +08:00
|
|
|
|
resultP->X_add_number ^= right.X_add_number;
|
|
|
|
|
break;
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
case O_bit_or_not:
|
1992-12-29 02:37:21 +08:00
|
|
|
|
resultP->X_add_number |= ~right.X_add_number;
|
|
|
|
|
break;
|
|
|
|
|
|
1991-04-05 02:19:53 +08:00
|
|
|
|
default:
|
1992-12-29 02:37:21 +08:00
|
|
|
|
BAD_CASE (op_left);
|
|
|
|
|
break;
|
|
|
|
|
} /* switch(operator) */
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
|
|
|
|
} /* If we have to force need_pass_2. */
|
|
|
|
|
} /* If operator was +. */
|
|
|
|
|
} /* If we didn't set need_pass_2. */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
op_left = op_right;
|
1991-04-05 02:19:53 +08:00
|
|
|
|
} /* While next operator is >= this rank. */
|
1992-12-29 02:37:21 +08:00
|
|
|
|
return (resultP->X_seg);
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* get_symbol_end()
|
|
|
|
|
*
|
|
|
|
|
* This lives here because it belongs equally in expr.c & read.c.
|
|
|
|
|
* Expr.c is just a branch office read.c anyway, and putting it
|
|
|
|
|
* here lessens the crowd at read.c.
|
|
|
|
|
*
|
|
|
|
|
* Assume input_line_pointer is at start of symbol name.
|
|
|
|
|
* Advance input_line_pointer past symbol name.
|
|
|
|
|
* Turn that character into a '\0', returning its former value.
|
|
|
|
|
* This allows a string compare (RMS wants symbol names to be strings)
|
|
|
|
|
* of the symbol name.
|
|
|
|
|
* There will always be a char following symbol name, because all good
|
|
|
|
|
* lines end in end-of-line.
|
|
|
|
|
*/
|
|
|
|
|
char
|
1992-12-29 02:37:21 +08:00
|
|
|
|
get_symbol_end ()
|
1991-04-05 02:19:53 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
register char c;
|
|
|
|
|
|
|
|
|
|
while (is_part_of_name (c = *input_line_pointer++))
|
|
|
|
|
;
|
|
|
|
|
*--input_line_pointer = 0;
|
|
|
|
|
return (c);
|
1991-04-05 02:19:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
1992-02-13 16:33:54 +08:00
|
|
|
|
|
1992-12-29 02:37:21 +08:00
|
|
|
|
unsigned int
|
|
|
|
|
get_single_number ()
|
1992-02-13 16:33:54 +08:00
|
|
|
|
{
|
1992-12-29 02:37:21 +08:00
|
|
|
|
expressionS exp;
|
|
|
|
|
operand (&exp);
|
|
|
|
|
return exp.X_add_number;
|
|
|
|
|
|
1992-02-13 16:33:54 +08:00
|
|
|
|
}
|
1992-12-29 02:37:21 +08:00
|
|
|
|
|
1992-02-13 17:13:54 +08:00
|
|
|
|
/* end of expr.c */
|