diff options
author | Doug Kwan <dougkwan@google.com> | 2009-06-05 21:32:57 +0000 |
---|---|---|
committer | Doug Kwan <dougkwan@google.com> | 2009-06-05 21:32:57 +0000 |
commit | bb04269c747a7aa5acffa2355efd1d7343338faf (patch) | |
tree | c0146d3edcbd719434f09eee57c611a592170761 /gold/target.cc | |
parent | da1f277114fc1ed98e71bf2fde32fe82757e9314 (diff) | |
download | gdb-bb04269c747a7aa5acffa2355efd1d7343338faf.zip gdb-bb04269c747a7aa5acffa2355efd1d7343338faf.tar.gz gdb-bb04269c747a7aa5acffa2355efd1d7343338faf.tar.bz2 |
2009-06-05 Doug Kwan <dougkwan@google.com>
* Makefile.am (CCFILES): Add target.cc.
* Makefile.in: Regenerate.
* i386.cc (class Target_i386): Define new virtual method to
override do_is_local_label_name in parent.
* object.cc (Sized_relobj::do_count_local_symbols): Discard
local symbols if --discard-locals or -X is given.
* options.h (class General_options): Declare new options
'--discard-locals' and '-X' for discarding locals.
* target.h (class Target): Define new methods is_local_label_name.
Declare new virtual method do_is_local_label_name.
* target.cc: New file.
* testsuite/Makefile.am (check_PROGRAMS): Add discard_locals_test.
(check_SCRIPTS): Add discard_locals_test.sh.
(check_DATA): Add discard_local_tests.syms.
(discard_locals_test_SOURCES, discard_locals_test_LDFLAGS): Define.
(discard_local_tests.syms, discard_locals_test.o): New make rules.
* testsuite/Makefile.in: Regenerate.
* testsuite/discard_locals_test.c: New file.
* testsuite/discard_locals_test.sh: Same.
Diffstat (limited to 'gold/target.cc')
-rw-r--r-- | gold/target.cc | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/gold/target.cc b/gold/target.cc new file mode 100644 index 0000000..b6844d0 --- /dev/null +++ b/gold/target.cc @@ -0,0 +1,58 @@ +// target.cc + +// Copyright 2009 Free Software Foundation, Inc. +// Written by Doug Kwan <dougkwan@google.com>. + +// This file is part of gold. + +// This program 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 3 of the License, or +// (at your option) any later version. + +// This program 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 this program; if not, write to the Free Software +// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, +// MA 02110-1301, USA. + +#include "gold.h" +#include "target.h" + +namespace gold +{ + +// Return whether NAME is a local label name. This is used to implement the +// --discard-locals options and can be overriden by children classes to +// implement system-specific behaviour. The logic here is the same as that +// in _bfd_elf_is_local_label_name(). + +bool +Target::do_is_local_label_name (const char* name) const +{ + // Normal local symbols start with ``.L''. + if (name[0] == '.' && name[1] == 'L') + return true; + + // At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate + // DWARF debugging symbols starting with ``..''. + if (name[0] == '.' && name[1] == '.') + return true; + + // gcc will sometimes generate symbols beginning with ``_.L_'' when + // emitting DWARF debugging output. I suspect this is actually a + // small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call + // ASM_GENERATE_INTERNAL_LABEL, and this causes the leading + // underscore to be emitted on some ELF targets). For ease of use, + // we treat such symbols as local. + if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_') + return true; + + return false; +} + +} // End namespace gold. |