mirror of
git://sourceware.org/git/libabigail.git
synced 2025-01-02 23:42:05 +00:00
0fb03efa85
* update-copyright.sh: Update the date in this script. Running the script then yields the changes below. * include/abg-btf-reader.h: Update copyright year as a result of running update-copyright.sh above. * include/abg-comp-filter.h: Likewise. * include/abg-comparison.h: Likewise. * include/abg-config.h: Likewise. * include/abg-corpus.h: Likewise. * include/abg-ctf-reader.h: Likewise. * include/abg-cxx-compat.h: Likewise. * include/abg-diff-utils.h: Likewise. * include/abg-dwarf-reader.h: Likewise. * include/abg-elf-based-reader.h: Likewise. * include/abg-elf-reader.h: Likewise. * include/abg-fe-iface.h: Likewise. * include/abg-fwd.h: Likewise. * include/abg-hash.h: Likewise. * include/abg-ini.h: Likewise. * include/abg-interned-str.h: Likewise. * include/abg-ir.h: Likewise. * include/abg-libxml-utils.h: Likewise. * include/abg-reader.h: Likewise. * include/abg-regex.h: Likewise. * include/abg-reporter.h: Likewise. * include/abg-sptr-utils.h: Likewise. * include/abg-suppression.h: Likewise. * include/abg-tools-utils.h: Likewise. * include/abg-traverse.h: Likewise. * include/abg-viz-common.h: Likewise. * include/abg-viz-dot.h: Likewise. * include/abg-viz-svg.h: Likewise. * include/abg-workers.h: Likewise. * include/abg-writer.h: Likewise. * src/abg-btf-reader.cc: Likewise. * src/abg-comp-filter.cc: Likewise. * src/abg-comparison-priv.h: Likewise. * src/abg-comparison.cc: Likewise. * src/abg-config.cc: Likewise. * src/abg-corpus-priv.h: Likewise. * src/abg-corpus.cc: Likewise. * src/abg-ctf-reader.cc: Likewise. * src/abg-default-reporter.cc: Likewise. * src/abg-diff-utils.cc: Likewise. * src/abg-dwarf-reader.cc: Likewise. * src/abg-elf-based-reader.cc: Likewise. * src/abg-elf-helpers.cc: Likewise. * src/abg-elf-helpers.h: Likewise. * src/abg-elf-reader.cc: Likewise. * src/abg-fe-iface.cc: Likewise. * src/abg-hash.cc: Likewise. * src/abg-ini.cc: Likewise. * src/abg-internal.h: Likewise. * src/abg-ir-priv.h: Likewise. * src/abg-ir.cc: Likewise. * src/abg-leaf-reporter.cc: Likewise. * src/abg-libxml-utils.cc: Likewise. * src/abg-reader.cc: Likewise. * src/abg-regex.cc: Likewise. * src/abg-reporter-priv.cc: Likewise. * src/abg-reporter-priv.h: Likewise. * src/abg-suppression-priv.h: Likewise. * src/abg-suppression.cc: Likewise. * src/abg-symtab-reader.cc: Likewise. * src/abg-symtab-reader.h: Likewise. * src/abg-tools-utils.cc: Likewise. * src/abg-traverse.cc: Likewise. * src/abg-viz-common.cc: Likewise. * src/abg-viz-dot.cc: Likewise. * src/abg-viz-svg.cc: Likewise. * src/abg-workers.cc: Likewise. * src/abg-writer.cc: Likewise. * tests/print-diff-tree.cc: Likewise. * tests/test-abicompat.cc: Likewise. * tests/test-abidiff-exit.cc: Likewise. * tests/test-abidiff.cc: Likewise. * tests/test-alt-dwarf-file.cc: Likewise. * tests/test-core-diff.cc: Likewise. * tests/test-cxx-compat.cc: Likewise. * tests/test-diff-dwarf-abixml.cc: Likewise. * tests/test-diff-dwarf.cc: Likewise. * tests/test-diff-filter.cc: Likewise. * tests/test-diff-pkg.cc: Likewise. * tests/test-diff-suppr.cc: Likewise. * tests/test-diff2.cc: Likewise. * tests/test-dot.cc: Likewise. * tests/test-elf-helpers.cc: Likewise. * tests/test-ini.cc: Likewise. * tests/test-ir-walker.cc: Likewise. * tests/test-kmi-whitelist.cc: Likewise. * tests/test-lookup-syms.cc: Likewise. * tests/test-read-btf.cc: Likewise. * tests/test-read-ctf.cc: Likewise. * tests/test-read-dwarf.cc: Likewise. * tests/test-read-write.cc: Likewise. * tests/test-svg.cc: Likewise. * tests/test-symtab-reader.cc: Likewise. * tests/test-symtab.cc: Likewise. * tests/test-tools-utils.cc: Likewise. * tests/test-types-stability.cc: Likewise. * tests/test-utils.cc: Likewise. * tests/test-utils.h: Likewise. * tools/abicompat.cc: Likewise. * tools/abidiff.cc: Likewise. * tools/abidw.cc: Likewise. * tools/abilint.cc: Likewise. * tools/abipkgdiff.cc: Likewise. * tools/abisym.cc: Likewise. * tools/binilint.cc: Likewise. * tools/fedabipkgdiff: Likewise. * tools/kmidiff.cc: Likewise. Signed-off-by: Dodji Seketeli <dodji@redhat.com>
148 lines
3.5 KiB
C++
148 lines
3.5 KiB
C++
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
// -*- Mode: C++ -*-
|
|
//
|
|
// Copyright (C) 2013-2024 Red Hat, Inc.
|
|
//
|
|
// Author: Dodji Seketeli
|
|
|
|
/// @file
|
|
///
|
|
/// This file contains the declarations of the entry points to
|
|
/// de-serialize an instance of @ref abigail::translation_unit to an
|
|
/// ABI Instrumentation file in libabigail native XML format.
|
|
|
|
#ifndef __ABG_WRITER_H__
|
|
#define __ABG_WRITER_H__
|
|
|
|
#include "abg-fwd.h"
|
|
|
|
namespace abigail
|
|
{
|
|
namespace xml_writer
|
|
{
|
|
|
|
using namespace abigail::ir;
|
|
|
|
/// The style of type id the XML writer will output.
|
|
enum type_id_style_kind
|
|
{
|
|
SEQUENCE_TYPE_ID_STYLE,
|
|
HASH_TYPE_ID_STYLE
|
|
};
|
|
|
|
class write_context;
|
|
|
|
/// A convenience typedef for a shared pointer to write_context.
|
|
typedef shared_ptr<write_context> write_context_sptr;
|
|
|
|
write_context_sptr
|
|
create_write_context(const environment& env,
|
|
ostream& output_stream);
|
|
|
|
void
|
|
set_show_locs(write_context& ctxt, bool flag);
|
|
|
|
void
|
|
set_annotate(write_context& ctxt, bool flag);
|
|
|
|
void
|
|
set_write_architecture(write_context& ctxt, bool flag);
|
|
|
|
void
|
|
set_write_corpus_path(write_context& ctxt, bool flag);
|
|
|
|
void
|
|
set_write_comp_dir(write_context& ctxt, bool flag);
|
|
|
|
void
|
|
set_write_elf_needed(write_context& ctxt, bool flag);
|
|
|
|
void
|
|
set_write_undefined_symbols(write_context& ctxt, bool flag);
|
|
|
|
void
|
|
set_write_default_sizes(write_context& ctxt, bool flag);
|
|
|
|
void
|
|
set_short_locs(write_context& ctxt, bool flag);
|
|
|
|
void
|
|
set_write_parameter_names(write_context& ctxt, bool flag);
|
|
|
|
void
|
|
set_type_id_style(write_context& ctxt, type_id_style_kind style);
|
|
|
|
/// A convenience generic function to set common options (usually used
|
|
/// by Libabigail tools) from a generic options carrying-object, into
|
|
/// a given @ref write_context.
|
|
///
|
|
/// @param ctxt the @ref the write_context to consider.
|
|
///
|
|
/// @param opts the option-carrying object to set the options from.
|
|
/// It must contain data members named: annotate, and show_locs, at
|
|
/// very least.
|
|
template <typename OPTS>
|
|
void
|
|
set_common_options(write_context& ctxt, const OPTS& opts)
|
|
{
|
|
set_annotate(ctxt, opts.annotate);
|
|
set_show_locs(ctxt, opts.show_locs);
|
|
set_write_architecture(ctxt, opts.write_architecture);
|
|
set_write_corpus_path(ctxt, opts.write_corpus_path);
|
|
set_write_comp_dir(ctxt, opts.write_comp_dir);
|
|
set_write_elf_needed(ctxt, opts.write_elf_needed);
|
|
set_write_undefined_symbols(ctxt, opts.load_undefined_interfaces);
|
|
set_write_parameter_names(ctxt, opts.write_parameter_names);
|
|
set_short_locs(ctxt, opts.short_locs);
|
|
set_write_default_sizes(ctxt, opts.default_sizes);
|
|
set_type_id_style(ctxt, opts.type_id_style);
|
|
}
|
|
|
|
void
|
|
set_ostream(write_context& ctxt, ostream& os);
|
|
|
|
bool
|
|
write_translation_unit(write_context& ctxt,
|
|
const translation_unit& tu,
|
|
const unsigned indent,
|
|
bool last = true);
|
|
|
|
bool
|
|
write_corpus_to_archive(const corpus& corp,
|
|
const string& path,
|
|
const bool annotate = false);
|
|
|
|
bool
|
|
write_corpus_to_archive(const corpus& corp,
|
|
const bool annotate = false);
|
|
|
|
bool
|
|
write_corpus_to_archive(const corpus_sptr corp,
|
|
const bool annotate = false);
|
|
|
|
bool
|
|
write_corpus(write_context& ctxt,
|
|
const corpus_sptr& corpus,
|
|
unsigned indent,
|
|
bool member_of_group = false);
|
|
|
|
bool
|
|
write_corpus_group(write_context& ctx,
|
|
const corpus_group_sptr& group,
|
|
unsigned indent);
|
|
|
|
}// end namespace xml_writer
|
|
|
|
#ifdef WITH_DEBUG_SELF_COMPARISON
|
|
void
|
|
write_canonical_type_ids(xml_writer::write_context&, ostream&);
|
|
|
|
bool
|
|
write_canonical_type_ids(xml_writer::write_context&,
|
|
const string &);
|
|
#endif
|
|
|
|
}// end namespace abigail
|
|
|
|
#endif // __ABG_WRITER_H__
|