mirror of
git://sourceware.org/git/libabigail.git
synced 2025-03-10 16:47:52 +00:00
The Git repository of the Libabigail Project
Until now, integral_type has been just a "private" helper type used in the building of a type_decl. Now it's going to be helpful in determining the name of an integral type, directly from DIEs -- without having to build a type_decl. This patch factorizes out the parsing and building of an integral_type by introducing a src/abg-ir-priv.h file that is meant to declare interfaces that are going to be private to libabigail.so but usable by all of its modules. * src/abg-ir-priv.h: New file. * src/Makefile.am: Add abg-ir-priv.h to the build system. * src/abg-ir.cc: Include the new abg-ir-priv.h header file. (class_integral_type): Move this type declaration to the new abg-ir-priv.h header. (integral_type::modifiers_type): Make this non-static. (parse_integral_type): This new overload is a factorized out of ... (integral_type::integral_type): ... here. Signed-off-by: Dodji Seketeli <dodji@redhat.com> |
||
---|---|---|
autoconf-archive | ||
bash-completion | ||
doc | ||
include | ||
m4 | ||
scripts | ||
src | ||
tests | ||
tools | ||
.gitignore | ||
abigail.m4 | ||
AUTHORS | ||
ChangeLog | ||
COMMIT-LOG-GUIDELINES | ||
COMPILING | ||
configure.ac | ||
CONTRIBUTING | ||
COPYING | ||
COPYING-GPLV3 | ||
COPYING-LGPLV2 | ||
COPYING-LGPLV3 | ||
default.abignore | ||
gen-changelog.py | ||
install-sh | ||
libabigail.pc.in | ||
ltmain.sh | ||
Makefile.am | ||
NEWS | ||
README | ||
release-text-template.txt | ||
VISIBILITY |
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 compare two ABI Corpora (apparently the plural of corpus is copora, heh, that's cool), provide detailed information about their differences, and help build tools to infer interesting conclusions about these differences. You are welcome to contribute to this project after reading the files CONTRIBUTING and COMMIT-LOG-GUIDELINES files in the source tree. Communicating with the maintainers of this project -- including sending patches to be include to the source code -- happens via email at libabigail@sourceware.org.