mirror of
git://sourceware.org/git/libabigail.git
synced 2025-03-06 14:47:32 +00:00
The Git repository of the Libabigail Project
* src/abg-ir.h (class reference_type_def, struct pointer_type_def) (struct reference_type_def): New declaration. (type_base_hash::operator(), type_decl_hash::operator()) (scope_type_decl_hash::operator()) (qualified_type_def_hash::operator()): Include the typeid name in the hash. * src/abg-ir.cc (reference_type_def::reference_type_def) (reference_type_def::operator==) (reference_type_def::get_pointed_to_type) (reference_type_def::is_lvalue) (reference_type_def::~reference_type_def): New definitions. (dynamic_type_hash::operator): Hash pointer_type_def and reference_type_def instances. * src/abg-reader.cc (read_context::finish_decl_creation) (read_context::finish_type_decl_creation) (handle_reference_type_def): New definitions. (read_file): Handle "reference-type-def" elements. (handle_type_decl, handle_namespace_decl) (handle_qualified_type_decl, handle_pointer_type_def): Use the new read_context::finish_type_decl_creation or read_context::finish_decl_creation. * src/abg-writer.cc (write_reference_type_def): New definition. (write_decl): Supporting writing a pointer to an instance of reference_type_def. * tests/data/test-read-write/test5.xml: New test file. * tests/test-read-write.cc: (De)Serialize it. * tests/Makefile.am: Add it to the build system. |
||
---|---|---|
m4 | ||
src | ||
tests | ||
.gitignore | ||
AUTHORS | ||
ChangeLog | ||
config.guess | ||
config.h.in | ||
config.sub | ||
configure | ||
configure.ac | ||
COPYING | ||
depcomp | ||
INSTALL | ||
install-sh | ||
ltmain.sh | ||
Makefile.am | ||
missing | ||
NEWS | ||
README |
This is the Application Binary Interface Generic Analysis and Instrumentation Library. It aims at constructing, manipulating, serializing and de-serializing ABI-relevant artifacts. The set of artifacts that we are intersted is made of quantities like types, variable, fonctions and declarations of a given library or program. For a given library or program this set of quantities is called an ABI corpus. This library aims at (among other things) providing a way to comparing two ABI Corpuses, provide detailed information about their differences, and help build tools to infer interesting conclusions about these differences.