+2011-03-16 H.J. Lu <hongjiu.lu@intel.com>
+
+ * as.c (show_usage): Add --size-check=.
+ (parse_args): Add and handle OPTION_SIZE_CHECK.
+
+ * as.h (flag_size_check): New.
+
+ * config/obj-elf.c (elf_frob_symbol): Use as_bad to report
+ bad .size directive only for --size-check=error.
+
+ * doc/as.texinfo: Document --size-check=.
+
2011-03-14 Mike Frysinger <vapier@gentoo.org>
* config/tc-bfin.c (bfin_cpus[]): Add 0.4 for
--execstack require executable stack for this object\n"));
fprintf (stream, _("\
--noexecstack don't require executable stack for this object\n"));
+ fprintf (stream, _("\
+ --size-check=[error|warning]\n\
+ ELF .size directive check (default --size-check=error)\n"));
#endif
fprintf (stream, _("\
-f skip whitespace and comment preprocessing\n"));
OPTION_TARGET_HELP,
OPTION_EXECSTACK,
OPTION_NOEXECSTACK,
+ OPTION_SIZE_CHECK,
OPTION_ALTERNATE,
OPTION_AL,
OPTION_HASH_TABLE_SIZE,
#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
,{"execstack", no_argument, NULL, OPTION_EXECSTACK}
,{"noexecstack", no_argument, NULL, OPTION_NOEXECSTACK}
+ ,{"size-check", required_argument, NULL, OPTION_SIZE_CHECK}
#endif
,{"fatal-warnings", no_argument, NULL, OPTION_WARN_FATAL}
,{"gdwarf-2", no_argument, NULL, OPTION_GDWARF2}
flag_noexecstack = 1;
flag_execstack = 0;
break;
+
+ case OPTION_SIZE_CHECK:
+ if (strcasecmp (optarg, "error") == 0)
+ flag_size_check = size_check_error;
+ else if (strcasecmp (optarg, "warning") == 0)
+ flag_size_check = size_check_warning;
+ else
+ as_fatal (_("Invalid --size-check= option: `%s'"), optarg);
+ break;
#endif
case 'Z':
flag_always_generate_output = 1;
COMMON char * found_comment_file;
#endif
+#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
+/* If .size directive failure should be error or warning. */
+COMMON enum
+ {
+ size_check_error = 0,
+ size_check_warning
+ }
+flag_size_check;
+#endif
+
#ifndef DOLLAR_AMBIGU
#define DOLLAR_AMBIGU 0
#endif
{
const char *op_name = NULL;
const char *add_name = NULL;
+ PRINTF_LIKE ((*as_error));
+
+ if (flag_size_check == size_check_error)
+ as_error = as_bad;
+ else
+ as_error = as_warn;
if (size->X_op == O_subtract)
{
add_name = NULL;
if (op_name && add_name)
- as_bad (_(".size expression with symbols `%s' and `%s' "
- "does not evaluate to a constant"),
- op_name, add_name);
+ as_error (_(".size expression with symbols `%s' and "
+ "`%s' does not evaluate to a constant"),
+ op_name, add_name);
else
{
const char *name;
name = NULL;
if (name)
- as_bad (_(".size expression with symbol `%s' "
- "does not evaluate to a constant"), name);
+ as_error (_(".size expression with symbol `%s' "
+ "does not evaluate to a constant"),
+ name);
}
}
if (!op_name && !add_name)
- as_bad (_(".size expression does not evaluate to a constant"));
+ as_error (_(".size expression does not evaluate to a "
+ "constant"));
}
free (sy_obj->size);
sy_obj->size = NULL;
@var{objfile}] [@b{-R}] [@b{--reduce-memory-overheads}] [@b{--statistics}]
[@b{-v}] [@b{-version}] [@b{--version}] [@b{-W}] [@b{--warn}]
[@b{--fatal-warnings}] [@b{-w}] [@b{-x}] [@b{-Z}] [@b{@@@var{FILE}}]
+ [@b{--size-check=[error|warning]}]
[@b{--target-help}] [@var{target-options}]
[@b{--}|@var{files} @dots{}]
@c
may help debugging assembler code, if the debugger can handle it. Note---this
option is only supported by some targets, not all of them.
+@item --size-check=error
+@itemx --size-check=warning
+Issue an error or warning for invalid ELF .size directive.
+
@item --help
Print a summary of the command line options and exit.
+2011-03-16 H.J. Lu <hongjiu.lu@intel.com>
+
+ * gas/i386/bad-size.d: New.
+ * gas/i386/bad-size.s: Likewise.
+ * gas/i386/bad-size.warn: Likewise.
+
+ * gas/i386/i386.exp: Run bad-size for ELF targets.
+
2011-03-06 H.J. Lu <hongjiu.lu@intel.com>
* gas/elf/bad-size.err: Revert the last change.
--- /dev/null
+#as: --size-check=warning
+#objdump: -dw
+#name: Check bad size directive
+#error-output: bad-size.warn
+
+.*: +file format .*
+
+
+Disassembly of section .text:
+
+0+ <_test_nop>:
+[ ]*[a-f0-9]+: 90 nop
+
+Disassembly of section .text.entry.continue:
+
+0+ <.text.entry.continue>:
+[ ]*[a-f0-9]+: 90 nop
+#pass
--- /dev/null
+ .text
+_test_nop:
+ nop
+ .section .text.entry.continue, "xa"
+ nop
+ .size _test_nop, .-_test_nop
--- /dev/null
+.*bad-size\.s: Assembler messages:
+.*bad-size\.s:6: Warning: .*
run_dump_test "debug1"
run_dump_test "dw2-compress-2"
+
+ run_dump_test "bad-size"
}
# This is a PE specific test.