1999-05-03 09:29:11 +02:00
|
|
|
/* messages.c - error reporter -
|
2004-09-13 02:49:16 +02:00
|
|
|
Copyright 1987, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 2000, 2001,
|
2011-03-18 12:16:28 +01:00
|
|
|
2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
|
1999-05-03 09:29:11 +02:00
|
|
|
Free Software Foundation, Inc.
|
|
|
|
This file is part of GAS, the GNU Assembler.
|
|
|
|
|
|
|
|
GAS is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-03 13:01:12 +02:00
|
|
|
the Free Software Foundation; either version 3, or (at your option)
|
1999-05-03 09:29:11 +02:00
|
|
|
any later version.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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
|
2005-05-05 11:13:19 +02:00
|
|
|
Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
02110-1301, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#include "as.h"
|
|
|
|
|
2003-11-24 18:52:33 +01:00
|
|
|
static void identify (char *);
|
|
|
|
static void as_show_where (void);
|
|
|
|
static void as_warn_internal (char *, unsigned int, char *);
|
|
|
|
static void as_bad_internal (char *, unsigned int, char *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-11-07 02:18:45 +01:00
|
|
|
/* Despite the rest of the comments in this file, (FIXME-SOON),
|
2003-12-19 16:23:41 +01:00
|
|
|
here is the current scheme for error messages etc:
|
|
|
|
|
|
|
|
as_fatal() is used when gas is quite confused and
|
|
|
|
continuing the assembly is pointless. In this case we
|
|
|
|
exit immediately with error status.
|
|
|
|
|
|
|
|
as_bad() is used to mark errors that result in what we
|
|
|
|
presume to be a useless object file. Say, we ignored
|
|
|
|
something that might have been vital. If we see any of
|
|
|
|
these, assembly will continue to the end of the source,
|
|
|
|
no object file will be produced, and we will terminate
|
|
|
|
with error status. The new option, -Z, tells us to
|
|
|
|
produce an object file anyway but we still exit with
|
|
|
|
error status. The assumption here is that you don't want
|
|
|
|
this object file but we could be wrong.
|
|
|
|
|
|
|
|
as_warn() is used when we have an error from which we
|
|
|
|
have a plausible error recovery. eg, masking the top
|
|
|
|
bits of a constant that is longer than will fit in the
|
|
|
|
destination. In this case we will continue to assemble
|
|
|
|
the source, although we may have made a bad assumption,
|
|
|
|
and we will produce an object file and return normal exit
|
|
|
|
status (ie, no error). The new option -X tells us to
|
|
|
|
treat all as_warn() errors as as_bad() errors. That is,
|
|
|
|
no object file will be produced and we will exit with
|
|
|
|
error status. The idea here is that we don't kill an
|
|
|
|
entire make because of an error that we knew how to
|
|
|
|
correct. On the other hand, sometimes you might want to
|
|
|
|
stop the make at these points.
|
|
|
|
|
|
|
|
as_tsktsk() is used when we see a minor error for which
|
|
|
|
our error recovery action is almost certainly correct.
|
|
|
|
In this case, we print a message and then assembly
|
|
|
|
continues as though no error occurred. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
static void
|
2003-11-24 18:52:33 +01:00
|
|
|
identify (char *file)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
static int identified;
|
2003-12-19 16:23:41 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if (identified)
|
|
|
|
return;
|
|
|
|
identified++;
|
|
|
|
|
|
|
|
if (!file)
|
|
|
|
{
|
|
|
|
unsigned int x;
|
|
|
|
as_where (&file, &x);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (file)
|
|
|
|
fprintf (stderr, "%s: ", file);
|
|
|
|
fprintf (stderr, _("Assembler messages:\n"));
|
|
|
|
}
|
|
|
|
|
2000-11-07 02:18:45 +01:00
|
|
|
/* The number of warnings issued. */
|
|
|
|
static int warning_count;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-09 22:23:15 +02:00
|
|
|
int
|
2003-11-24 18:52:33 +01:00
|
|
|
had_warnings (void)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2003-12-19 16:23:41 +01:00
|
|
|
return warning_count;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Nonzero if we've hit a 'bad error', and should not write an obj file,
|
2000-11-07 02:18:45 +01:00
|
|
|
and exit with a nonzero error code. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
static int error_count;
|
|
|
|
|
2000-09-09 22:23:15 +02:00
|
|
|
int
|
2003-11-24 18:52:33 +01:00
|
|
|
had_errors (void)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2003-12-19 16:23:41 +01:00
|
|
|
return error_count;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Print the current location to stderr. */
|
|
|
|
|
|
|
|
static void
|
2003-11-24 18:52:33 +01:00
|
|
|
as_show_where (void)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
char *file;
|
|
|
|
unsigned int line;
|
|
|
|
|
|
|
|
as_where (&file, &line);
|
|
|
|
identify (file);
|
|
|
|
if (file)
|
2011-03-18 12:16:28 +01:00
|
|
|
{
|
|
|
|
if (line != 0)
|
|
|
|
fprintf (stderr, "%s:%u: ", file, line);
|
|
|
|
else
|
|
|
|
fprintf (stderr, "%s: ", file);
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2000-11-07 02:18:45 +01:00
|
|
|
/* Send to stderr a string as a warning, and locate warning
|
|
|
|
in input file(s).
|
|
|
|
Please only use this for when we have some recovery action.
|
|
|
|
Please explain in string (which may have '\n's) what recovery was
|
|
|
|
done. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-09 22:23:15 +02:00
|
|
|
void
|
2000-11-07 02:18:45 +01:00
|
|
|
as_tsktsk (const char *format, ...)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
as_show_where ();
|
|
|
|
va_start (args, format);
|
|
|
|
vfprintf (stderr, format, args);
|
|
|
|
va_end (args);
|
|
|
|
(void) putc ('\n', stderr);
|
2000-11-07 02:18:45 +01:00
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* The common portion of as_warn and as_warn_where. */
|
|
|
|
|
|
|
|
static void
|
2003-11-24 18:52:33 +01:00
|
|
|
as_warn_internal (char *file, unsigned int line, char *buffer)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
++warning_count;
|
|
|
|
|
|
|
|
if (file == NULL)
|
|
|
|
as_where (&file, &line);
|
|
|
|
|
|
|
|
identify (file);
|
|
|
|
if (file)
|
2011-03-18 12:16:28 +01:00
|
|
|
{
|
|
|
|
if (line != 0)
|
|
|
|
fprintf (stderr, "%s:%u: ", file, line);
|
|
|
|
else
|
|
|
|
fprintf (stderr, "%s: ", file);
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
fprintf (stderr, _("Warning: "));
|
|
|
|
fputs (buffer, stderr);
|
|
|
|
(void) putc ('\n', stderr);
|
|
|
|
#ifndef NO_LISTING
|
|
|
|
listing_warning (buffer);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-11-07 02:18:45 +01:00
|
|
|
/* Send to stderr a string as a warning, and locate warning
|
|
|
|
in input file(s).
|
|
|
|
Please only use this for when we have some recovery action.
|
|
|
|
Please explain in string (which may have '\n's) what recovery was
|
|
|
|
done. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-09 22:23:15 +02:00
|
|
|
void
|
2000-11-07 02:18:45 +01:00
|
|
|
as_warn (const char *format, ...)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char buffer[2000];
|
|
|
|
|
|
|
|
if (!flag_no_warnings)
|
|
|
|
{
|
|
|
|
va_start (args, format);
|
2005-07-21 10:03:54 +02:00
|
|
|
vsnprintf (buffer, sizeof (buffer), format, args);
|
1999-05-03 09:29:11 +02:00
|
|
|
va_end (args);
|
|
|
|
as_warn_internal ((char *) NULL, 0, buffer);
|
|
|
|
}
|
2000-11-07 02:18:45 +01:00
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-11-07 02:18:45 +01:00
|
|
|
/* Like as_bad but the file name and line number are passed in.
|
|
|
|
Unfortunately, we have to repeat the function in order to handle
|
|
|
|
the varargs correctly and portably. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-09 22:23:15 +02:00
|
|
|
void
|
2000-11-07 02:18:45 +01:00
|
|
|
as_warn_where (char *file, unsigned int line, const char *format, ...)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char buffer[2000];
|
|
|
|
|
|
|
|
if (!flag_no_warnings)
|
|
|
|
{
|
|
|
|
va_start (args, format);
|
2005-07-21 10:03:54 +02:00
|
|
|
vsnprintf (buffer, sizeof (buffer), format, args);
|
1999-05-03 09:29:11 +02:00
|
|
|
va_end (args);
|
|
|
|
as_warn_internal (file, line, buffer);
|
|
|
|
}
|
2000-11-07 02:18:45 +01:00
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* The common portion of as_bad and as_bad_where. */
|
|
|
|
|
|
|
|
static void
|
2003-11-24 18:52:33 +01:00
|
|
|
as_bad_internal (char *file, unsigned int line, char *buffer)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
++error_count;
|
|
|
|
|
|
|
|
if (file == NULL)
|
|
|
|
as_where (&file, &line);
|
|
|
|
|
|
|
|
identify (file);
|
|
|
|
if (file)
|
2011-03-18 12:16:28 +01:00
|
|
|
{
|
|
|
|
if (line != 0)
|
|
|
|
fprintf (stderr, "%s:%u: ", file, line);
|
|
|
|
else
|
|
|
|
fprintf (stderr, "%s: ", file);
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
fprintf (stderr, _("Error: "));
|
|
|
|
fputs (buffer, stderr);
|
|
|
|
(void) putc ('\n', stderr);
|
|
|
|
#ifndef NO_LISTING
|
|
|
|
listing_error (buffer);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2000-11-07 02:18:45 +01:00
|
|
|
/* Send to stderr a string as a warning, and locate warning in input
|
|
|
|
file(s). Please us when there is no recovery, but we want to
|
|
|
|
continue processing but not produce an object file.
|
|
|
|
Please explain in string (which may have '\n's) what recovery was
|
2001-01-23 23:15:01 +01:00
|
|
|
done. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-09 22:23:15 +02:00
|
|
|
void
|
2000-11-07 02:18:45 +01:00
|
|
|
as_bad (const char *format, ...)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char buffer[2000];
|
|
|
|
|
|
|
|
va_start (args, format);
|
2005-07-21 10:03:54 +02:00
|
|
|
vsnprintf (buffer, sizeof (buffer), format, args);
|
1999-05-03 09:29:11 +02:00
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
as_bad_internal ((char *) NULL, 0, buffer);
|
|
|
|
}
|
|
|
|
|
2000-11-07 02:18:45 +01:00
|
|
|
/* Like as_bad but the file name and line number are passed in.
|
|
|
|
Unfortunately, we have to repeat the function in order to handle
|
|
|
|
the varargs correctly and portably. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-09 22:23:15 +02:00
|
|
|
void
|
2000-11-07 02:18:45 +01:00
|
|
|
as_bad_where (char *file, unsigned int line, const char *format, ...)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char buffer[2000];
|
|
|
|
|
|
|
|
va_start (args, format);
|
2005-07-21 10:03:54 +02:00
|
|
|
vsnprintf (buffer, sizeof (buffer), format, args);
|
1999-05-03 09:29:11 +02:00
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
as_bad_internal (file, line, buffer);
|
|
|
|
}
|
|
|
|
|
2000-11-07 02:18:45 +01:00
|
|
|
/* Send to stderr a string as a fatal message, and print location of
|
|
|
|
error in input file(s).
|
|
|
|
Please only use this for when we DON'T have some recovery action.
|
|
|
|
It xexit()s with a warning status. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-09 22:23:15 +02:00
|
|
|
void
|
2000-11-07 02:18:45 +01:00
|
|
|
as_fatal (const char *format, ...)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
as_show_where ();
|
|
|
|
va_start (args, format);
|
|
|
|
fprintf (stderr, _("Fatal error: "));
|
|
|
|
vfprintf (stderr, format, args);
|
|
|
|
(void) putc ('\n', stderr);
|
|
|
|
va_end (args);
|
2001-01-15 23:53:58 +01:00
|
|
|
/* Delete the output file, if it exists. This will prevent make from
|
|
|
|
thinking that a file was created and hence does not need rebuilding. */
|
|
|
|
if (out_file_name != NULL)
|
2005-03-02 10:03:58 +01:00
|
|
|
unlink_if_ordinary (out_file_name);
|
1999-05-03 09:29:11 +02:00
|
|
|
xexit (EXIT_FAILURE);
|
2000-11-07 02:18:45 +01:00
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-11-07 02:18:45 +01:00
|
|
|
/* Indicate assertion failure.
|
|
|
|
Arguments: Filename, line number, optional function name. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
void
|
2003-11-24 18:52:33 +01:00
|
|
|
as_assert (const char *file, int line, const char *fn)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
as_show_where ();
|
|
|
|
fprintf (stderr, _("Internal error!\n"));
|
|
|
|
if (fn)
|
|
|
|
fprintf (stderr, _("Assertion failure in %s at %s line %d.\n"),
|
|
|
|
fn, file, line);
|
|
|
|
else
|
|
|
|
fprintf (stderr, _("Assertion failure at %s line %d.\n"), file, line);
|
|
|
|
fprintf (stderr, _("Please report this bug.\n"));
|
|
|
|
xexit (EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* as_abort: Print a friendly message saying how totally hosed we are,
|
|
|
|
and exit without producing a core file. */
|
2000-11-07 02:18:45 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
void
|
2003-11-24 18:52:33 +01:00
|
|
|
as_abort (const char *file, int line, const char *fn)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
as_show_where ();
|
|
|
|
if (fn)
|
|
|
|
fprintf (stderr, _("Internal error, aborting at %s line %d in %s\n"),
|
|
|
|
file, line, fn);
|
|
|
|
else
|
|
|
|
fprintf (stderr, _("Internal error, aborting at %s line %d\n"),
|
|
|
|
file, line);
|
|
|
|
fprintf (stderr, _("Please report this bug.\n"));
|
|
|
|
xexit (EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Support routines. */
|
|
|
|
|
|
|
|
void
|
2003-11-24 18:52:33 +01:00
|
|
|
sprint_value (char *buf, valueT val)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
if (sizeof (val) <= sizeof (long))
|
|
|
|
{
|
|
|
|
sprintf (buf, "%ld", (long) val);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (sizeof (val) <= sizeof (bfd_vma))
|
|
|
|
{
|
|
|
|
sprintf_vma (buf, val);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
abort ();
|
|
|
|
}
|
2004-05-06 13:01:48 +02:00
|
|
|
|
|
|
|
#define HEX_MAX_THRESHOLD 1024
|
|
|
|
#define HEX_MIN_THRESHOLD -(HEX_MAX_THRESHOLD)
|
|
|
|
|
|
|
|
static void
|
|
|
|
as_internal_value_out_of_range (char * prefix,
|
|
|
|
offsetT val,
|
|
|
|
offsetT min,
|
|
|
|
offsetT max,
|
|
|
|
char * file,
|
|
|
|
unsigned line,
|
|
|
|
int bad)
|
|
|
|
{
|
|
|
|
const char * err;
|
|
|
|
|
|
|
|
if (prefix == NULL)
|
|
|
|
prefix = "";
|
|
|
|
|
include/opcode/
* ppc.h (struct powerpc_operand): Replace "bits" with "bitm".
(num_powerpc_operands): Declare.
(PPC_OPERAND_SIGNED et al): Redefine as hex.
(PPC_OPERAND_PLUS1): Define.
opcodes/
* ppc-dis.c (print_insn_powerpc): Adjust for struct powerpc_operand
change.
* ppc-opc.c (powerpc_operands): Replace bit count with bit mask
in all entries. Add PPC_OPERAND_SIGNED to DE entry. Remove
references to following deleted functions.
(insert_bd, extract_bd, insert_dq, extract_dq): Delete.
(insert_ds, extract_ds, insert_de, extract_de): Delete.
(insert_des, extract_des, insert_li, extract_li): Delete.
(insert_nb, insert_rsq, insert_rtq, insert_ev2, extract_ev2): Delete.
(insert_ev4, extract_ev4, insert_ev8, extract_ev8): Delete.
(num_powerpc_operands): New constant.
(XSPRG_MASK): Remove entire SPRG field.
(powerpc_opcodes <bcctre, bcctrel>): Use XLBB_MASK not XLYBB_MASK.
gas/
* messages.c (as_internal_value_out_of_range): Extend to report
errors for values with invalid low bits set.
* config/tc-ppc.c (ppc_setup_opcodes): Check powerpc_operands bitm
fields. Check that operands and opcode fields are disjoint.
(ppc_insert_operand): Check operands using mask rather than bit
count. Check low bits too. Handle PPC_OPERAND_PLUS1. Adjust
insertion code.
(md_apply_fix): Adjust for struct powerpc_operand change.
2007-04-20 14:25:15 +02:00
|
|
|
if (val >= min && val <= max)
|
|
|
|
{
|
|
|
|
addressT right = max & -max;
|
|
|
|
|
|
|
|
if (max <= 1)
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
/* xgettext:c-format */
|
2007-04-20 15:42:03 +02:00
|
|
|
err = _("%s out of domain (%d is not a multiple of %d)");
|
include/opcode/
* ppc.h (struct powerpc_operand): Replace "bits" with "bitm".
(num_powerpc_operands): Declare.
(PPC_OPERAND_SIGNED et al): Redefine as hex.
(PPC_OPERAND_PLUS1): Define.
opcodes/
* ppc-dis.c (print_insn_powerpc): Adjust for struct powerpc_operand
change.
* ppc-opc.c (powerpc_operands): Replace bit count with bit mask
in all entries. Add PPC_OPERAND_SIGNED to DE entry. Remove
references to following deleted functions.
(insert_bd, extract_bd, insert_dq, extract_dq): Delete.
(insert_ds, extract_ds, insert_de, extract_de): Delete.
(insert_des, extract_des, insert_li, extract_li): Delete.
(insert_nb, insert_rsq, insert_rtq, insert_ev2, extract_ev2): Delete.
(insert_ev4, extract_ev4, insert_ev8, extract_ev8): Delete.
(num_powerpc_operands): New constant.
(XSPRG_MASK): Remove entire SPRG field.
(powerpc_opcodes <bcctre, bcctrel>): Use XLBB_MASK not XLYBB_MASK.
gas/
* messages.c (as_internal_value_out_of_range): Extend to report
errors for values with invalid low bits set.
* config/tc-ppc.c (ppc_setup_opcodes): Check powerpc_operands bitm
fields. Check that operands and opcode fields are disjoint.
(ppc_insert_operand): Check operands using mask rather than bit
count. Check low bits too. Handle PPC_OPERAND_PLUS1. Adjust
insertion code.
(md_apply_fix): Adjust for struct powerpc_operand change.
2007-04-20 14:25:15 +02:00
|
|
|
if (bad)
|
|
|
|
as_bad_where (file, line, err,
|
|
|
|
prefix, (int) val, (int) right);
|
|
|
|
else
|
|
|
|
as_warn_where (file, line, err,
|
|
|
|
prefix, (int) val, (int) right);
|
2007-04-20 15:42:03 +02:00
|
|
|
return;
|
include/opcode/
* ppc.h (struct powerpc_operand): Replace "bits" with "bitm".
(num_powerpc_operands): Declare.
(PPC_OPERAND_SIGNED et al): Redefine as hex.
(PPC_OPERAND_PLUS1): Define.
opcodes/
* ppc-dis.c (print_insn_powerpc): Adjust for struct powerpc_operand
change.
* ppc-opc.c (powerpc_operands): Replace bit count with bit mask
in all entries. Add PPC_OPERAND_SIGNED to DE entry. Remove
references to following deleted functions.
(insert_bd, extract_bd, insert_dq, extract_dq): Delete.
(insert_ds, extract_ds, insert_de, extract_de): Delete.
(insert_des, extract_des, insert_li, extract_li): Delete.
(insert_nb, insert_rsq, insert_rtq, insert_ev2, extract_ev2): Delete.
(insert_ev4, extract_ev4, insert_ev8, extract_ev8): Delete.
(num_powerpc_operands): New constant.
(XSPRG_MASK): Remove entire SPRG field.
(powerpc_opcodes <bcctre, bcctrel>): Use XLBB_MASK not XLYBB_MASK.
gas/
* messages.c (as_internal_value_out_of_range): Extend to report
errors for values with invalid low bits set.
* config/tc-ppc.c (ppc_setup_opcodes): Check powerpc_operands bitm
fields. Check that operands and opcode fields are disjoint.
(ppc_insert_operand): Check operands using mask rather than bit
count. Check low bits too. Handle PPC_OPERAND_PLUS1. Adjust
insertion code.
(md_apply_fix): Adjust for struct powerpc_operand change.
2007-04-20 14:25:15 +02:00
|
|
|
}
|
|
|
|
|
2004-05-06 13:01:48 +02:00
|
|
|
if ( val < HEX_MAX_THRESHOLD
|
|
|
|
&& min < HEX_MAX_THRESHOLD
|
|
|
|
&& max < HEX_MAX_THRESHOLD
|
|
|
|
&& val > HEX_MIN_THRESHOLD
|
|
|
|
&& min > HEX_MIN_THRESHOLD
|
|
|
|
&& max > HEX_MIN_THRESHOLD)
|
|
|
|
{
|
|
|
|
/* xgettext:c-format */
|
|
|
|
err = _("%s out of range (%d is not between %d and %d)");
|
|
|
|
|
|
|
|
if (bad)
|
2004-09-13 02:49:16 +02:00
|
|
|
as_bad_where (file, line, err,
|
|
|
|
prefix, (int) val, (int) min, (int) max);
|
2004-05-06 13:01:48 +02:00
|
|
|
else
|
2004-09-13 02:49:16 +02:00
|
|
|
as_warn_where (file, line, err,
|
|
|
|
prefix, (int) val, (int) min, (int) max);
|
2004-05-06 13:01:48 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char val_buf [sizeof (val) * 3 + 2];
|
|
|
|
char min_buf [sizeof (val) * 3 + 2];
|
|
|
|
char max_buf [sizeof (val) * 3 + 2];
|
|
|
|
|
|
|
|
if (sizeof (val) > sizeof (bfd_vma))
|
|
|
|
abort ();
|
|
|
|
|
2008-07-30 06:34:58 +02:00
|
|
|
sprintf_vma (val_buf, (bfd_vma) val);
|
|
|
|
sprintf_vma (min_buf, (bfd_vma) min);
|
|
|
|
sprintf_vma (max_buf, (bfd_vma) max);
|
2004-05-06 13:01:48 +02:00
|
|
|
|
|
|
|
/* xgettext:c-format. */
|
|
|
|
err = _("%s out of range (0x%s is not between 0x%s and 0x%s)");
|
|
|
|
|
|
|
|
if (bad)
|
|
|
|
as_bad_where (file, line, err, prefix, val_buf, min_buf, max_buf);
|
|
|
|
else
|
|
|
|
as_warn_where (file, line, err, prefix, val_buf, min_buf, max_buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
as_warn_value_out_of_range (char * prefix,
|
|
|
|
offsetT value,
|
|
|
|
offsetT min,
|
|
|
|
offsetT max,
|
|
|
|
char * file,
|
|
|
|
unsigned line)
|
|
|
|
{
|
|
|
|
as_internal_value_out_of_range (prefix, value, min, max, file, line, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
as_bad_value_out_of_range (char * prefix,
|
|
|
|
offsetT value,
|
|
|
|
offsetT min,
|
|
|
|
offsetT max,
|
|
|
|
char * file,
|
|
|
|
unsigned line)
|
|
|
|
{
|
|
|
|
as_internal_value_out_of_range (prefix, value, min, max, file, line, 1);
|
|
|
|
}
|