bb2b2a2472
2005-06-17 Jakub Jelinek <jakub@redhat.com> Benjamin Kosnik <bkoz@redhat.com> * config/abi/alpha-linux-gnu/baseline_symbols.txt: Update. * config/abi/hppa-linux-gnu/baseline_symbols.txt: Same. * config/abi/mips-linux-gnu/baseline_symbols.txt: Same. * config/abi/sparc-linux-gnu/baseline_symbols.txt: Same. * config/abi/alpha-freebsd5/baseline_symbols.txt: Remove. * config/abi/i386-freebsd4/baseline_symbols.txt: Same. * config/abi/i386-freebsd5/baseline_symbols.txt: Same. * config/abi/sparc-freebsd5/baseline_symbols.txt: Same. * config/abi/arm-linux-gnu/baseline_symbols.txt: Remove. * config/abi/m68k-linux-gnu/baseline_symbols.txt: Same. 2005-06-17 Jakub Jelinek <jakub@redhat.com> * config/abi/ia64-linux-gnu/baseline_symbols.txt: Update. * config/abi/s390x-linux-gnu/baseline_symbols.txt: Update. * config/abi/s390-linux-gnu/baseline_symbols.txt: Update. * config/abi/x86_64-linux-gnu/baseline_symbols.txt: Update. * config/abi/x86_64-linux-gnu/32/baseline_symbols.txt: Update. * config/abi/powerpc-linux-gnu/baseline_symbols.txt: Update. * config/abi/i486-linux-gnu/baseline_symbols.txt: Update. * config/abi/i386-linux-gnu/baseline_symbols.txt: Update. * config/abi/powerpc64-linux-gnu/baseline_symbols.txt: New file. * config/abi/powerpc64-linux-gnu/32/baseline_symbols.txt: New file. 2005-06-16 Jakub Jelinek <jakub@redhat.com> * src/compatibility.cc: Include bits/c++config.h first. (_GLIBCXX_SYMVER_COMPATIBILITY): Define if _GLIBCXX_SYMVER and PIC are both defined. * include/bits/char_traits.h (char_traits::eq): Rename only if _GLIBCXX_SYMVER_COMPATIBILITY is defined. 2005-06-16 Jakub Jelinek <jakub@redhat.com> * acinclude.m4 ((GLIBCXX_ENABLE_SYMVERS): Rename _GLIBCXX_SIZE_T_IS_INT to _GLIBCXX_SIZE_T_IS_UINT. Define _GLIBCXX_PTRDIFF_T_IS_INT. * configure: Regenerate. * config.h.in: Regenerate. * src/compatibility.cc (istream:ignore(streamsize)): Use _GLIBCXX_PTRDIFF_T_IS_INT instead of _GLIBCXX_SIZE_T_IS_INT. * config/abi/compatibility.h: Rename _GLIBCXX_SIZE_T_IS_INT to _GLIBCXX_SIZE_T_IS_UINT. Use _GLIBCXX_PTRDIFF_T_IS_INT instead for symbols with streamsize arguments. 2005-06-16 Jakub Jelinek <jakub@redhat.com> * config/linker-map.gnu: Also export _ZNSt13basic_istreamIwSt11char_traitsIwEE6ignoreE[il][il]. 2005-06-15 Benjamin Kosnik <bkoz@redhat.com> * configure.ac (libtool_VERSION): To 6:6:0. * configure: Regenerate. * config/linker-map.gnu: Edit. * src/istream.cc: Move istream::ignore(streamsize) specializations... * src/compatibility.cc: ...here. New. * include/bits/char_traits.h (char_traits::eq): Rename when appropriate. * acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Define _GLIBCXX_SIZE_T_IS_INT. Bump glibcxx_min_gnu_ld_version to 21590. * configure: Regenerate. * acconfig.h: Remove _GLIBCXX_ASM_SYMVER. * config.h.in: Regenerate. * src/Makefile.am (sources): Add compatibility.cc. * src/Makefile.in: Regenerate. * include/Makefile.am (host_headers_noinst): Add compatibility.h. * include/Makefile.in: Regenerate. * testsuite/testsuite_abi.h (symbol): Add data members. * testsuite/testsuite_abi.cc (check_version): Add GLIBCXX_3.4.5, GLIBCXX_3.4.6. Remove deprecated versions. Do a better job version checking. From-SVN: r101125
129 lines
3.5 KiB
C++
129 lines
3.5 KiB
C++
// -*- C++ -*-
|
|
|
|
// Copyright (C) 2004, 2005 Free Software Foundation, Inc.
|
|
|
|
// This library 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.
|
|
|
|
// This library 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 library; see the file COPYING. If not, write to
|
|
// the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
|
|
// MA 02111-1307, USA.
|
|
|
|
// As a special exception, you may use this file as part of a free
|
|
// software library without restriction. Specifically, if other files
|
|
// instantiate templates or use macros or inline functions from this
|
|
// file, or you compile this file and link it with other files to
|
|
// produce an executable, this file does not by itself cause the
|
|
// resulting executable to be covered by the GNU General Public
|
|
// License. This exception does not however invalidate any other
|
|
// reasons why the executable file might be covered by the GNU General
|
|
// Public License.
|
|
|
|
// Benjamin Kosnik <bkoz@redhat.com>
|
|
|
|
#include <string>
|
|
#include <stdexcept>
|
|
#include <deque>
|
|
#include <ext/hash_map>
|
|
#include <cxxabi.h>
|
|
|
|
// Encapsulates symbol characteristics.
|
|
struct symbol
|
|
{
|
|
enum category { function, object, uncategorized };
|
|
enum designation { existing, added, subtracted, undesignated };
|
|
enum version { none, compatible, incompatible, unversioned };
|
|
enum compatibility
|
|
{
|
|
compat_type = 1,
|
|
compat_name = 2,
|
|
compat_size = 4,
|
|
compat_version = 8
|
|
};
|
|
|
|
category type;
|
|
std::string name;
|
|
std::string raw_name; // Name with versioning info still attached.
|
|
std::string demangled_name;
|
|
int size;
|
|
std::string version_name;
|
|
version version_status;
|
|
designation status;
|
|
|
|
symbol()
|
|
: type(uncategorized), size(0), version_status(unversioned),
|
|
status(undesignated) { }
|
|
|
|
symbol(const symbol& other)
|
|
: type(other.type), name(other.name), demangled_name(other.demangled_name),
|
|
size(other.size), version_name(other.version_name),
|
|
version_status(other.version_status), status(other.status) { }
|
|
|
|
void
|
|
print() const;
|
|
|
|
void
|
|
init(std::string& data);
|
|
};
|
|
|
|
typedef __gnu_cxx::hash_map<std::string, symbol> symbol_objects;
|
|
|
|
typedef std::deque<std::string> symbol_names;
|
|
|
|
typedef std::pair<symbol_names, symbol_objects> symbols;
|
|
|
|
|
|
// Check.
|
|
bool
|
|
check_version(symbol& test, bool added = false);
|
|
|
|
bool
|
|
check_compatible(symbol& lhs, symbol& rhs, bool verbose = false);
|
|
|
|
|
|
// Examine.
|
|
bool
|
|
has_symbol(const std::string& mangled, const symbols& list) throw();
|
|
|
|
symbol&
|
|
get_symbol(const std::string& mangled, const symbols& list);
|
|
|
|
extern "C" void
|
|
examine_symbol(const char* name, const char* file);
|
|
|
|
extern "C" int
|
|
compare_symbols(const char* baseline_file, const char* test_file, bool verb);
|
|
|
|
|
|
// Util.
|
|
symbols
|
|
create_symbols(const char* file);
|
|
|
|
const char*
|
|
demangle(const std::string& mangled);
|
|
|
|
|
|
// Specialization.
|
|
namespace __gnu_cxx
|
|
{
|
|
using namespace std;
|
|
|
|
template<>
|
|
struct hash<string>
|
|
{
|
|
size_t operator()(const string& s) const
|
|
{
|
|
const collate<char>& c = use_facet<collate<char> >(locale::classic());
|
|
return c.hash(s.c_str(), s.c_str() + s.size());
|
|
}
|
|
};
|
|
}
|