mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
bf43fe6aa9
My forthcoming patches for PR other/116613 make much more use of cloning of pretty_printers than before, so it makes sense as a preliminary patch for the result of pretty_printer::clone to be a std::unique_ptr, rather than add more manual uses of "delete". On doing so, I noticed various other places where naked new/delete is used for run-time configuration of diagnostics: * the output format (text vs SARIF) * client data hooks * the option manager * the URLifier Hence this patch also makes use of std::unique_ptr and ::make_unique for managing such client policy classes, and also for diagnostic_buffer's per-format implementations. Unfortunately we can't directly include <memory> in our internal headers but instead any of our TUs that make use of std::unique_ptr must #define INCLUDE_MEMORY before including system.h. Hence the bulk of this patch is taken up with adding a define of INCLUDE_MEMORY to hundreds of source files: everything that includes diagnostic.h or pretty-print.h (and thus anything transitively such as includers of lto-wrapper.h, c-tree.h, cp-tree.h and rtl-ssa.h). Thanks to Gaius Mulley for the parts of the patch that regenerated the m2 files. gcc/ada/ChangeLog: PR other/116613 * gcc-interface/misc.cc: Add #define INCLUDE_MEMORY * gcc-interface/trans.cc: Likewise. * gcc-interface/utils.cc: Likewise. gcc/analyzer/ChangeLog: PR other/116613 * analyzer-logging.cc: Add #define INCLUDE_MEMORY (logger::logger): Update for m_pp becoming a unique_ptr. (logger::~logger): Likewise. (logger::log_va_partial): Likewise. (logger::end_log_line): Likewise. * analyzer-logging.h (logger::get_printer): Likewise. (logger::m_pp): Convert to a unique_ptr. * analyzer.cc (make_label_text): Use diagnostic_context::clone_printer and use unique_ptr. (make_label_text_n): Likewise. * bar-chart.cc: Add #define INCLUDE_MEMORY * pending-diagnostic.cc (evdesc::event_desc::formatted_print): Use diagnostic_context::clone_printer and use unique_ptr. * sm-malloc.cc (sufficiently_similar_p): Likewise. * supergraph.cc (supergraph::dump_dot_to_file): Likewise. gcc/c-family/ChangeLog: PR other/116613 * c-ada-spec.cc: Add #define INCLUDE_MEMORY. * c-attribs.cc: Likewise. * c-common.cc: Likewise. * c-format.cc: Likewise. * c-gimplify.cc: Likewise. * c-indentation.cc: Likewise. * c-opts.cc: Likewise. * c-pch.cc: Likewise. * c-pragma.cc: Likewise. * c-pretty-print.cc: Likewise. Add #include "make-unique.h". (c_pretty_printer::clone): Use std::unique_ptr and ::make_unique. * c-pretty-print.h (c_pretty_printer::clone): Use std::unique_ptr. * c-type-mismatch.cc: Add #define INCLUDE_MEMORY. * c-warn.cc: Likewise. gcc/c/ChangeLog: PR other/116613 * c-aux-info.cc: Add #define INCLUDE_MEMORY. * c-convert.cc: Likewise. * c-errors.cc: Likewise. * c-fold.cc: Likewise. * c-lang.cc: Likewise. * c-objc-common.cc: Likewise. (pp_markup::element_quoted_type::print_type): Use unique_ptr. * c-typeck.cc: Add #define INCLUDE_MEMORY. * gimple-parser.cc: Likewise. gcc/cp/ChangeLog: PR other/116613 * call.cc: Add #define INCLUDE_MEMORY. * class.cc: Likewise. * constexpr.cc: Likewise. * constraint.cc: Likewise. * contracts.cc: Likewise. * coroutines.cc: Likewise. * cp-gimplify.cc: Likewise. * cp-lang.cc: Likewise. * cp-objcp-common.cc: Likewise. * cp-ubsan.cc: Likewise. * cvt.cc: Likewise. * cxx-pretty-print.cc: Likewise. Add #include "cp-tree.h". (cxx_pretty_printer::clone): Use std::unique_ptr and ::make_unique. * cxx-pretty-print.h (cxx_pretty_printer::clone): Use std::unique_ptr. * decl2.cc: Add #define INCLUDE_MEMORY. * dump.cc: Likewise. * except.cc: Likewise. * expr.cc: Likewise. * friend.cc: Likewise. * init.cc: Likewise. * lambda.cc: Likewise. * logic.cc: Likewise. * mangle.cc: Likewise. * method.cc: Likewise. * optimize.cc: Likewise. * pt.cc: Likewise. * ptree.cc: Likewise. * rtti.cc: Likewise. * search.cc: Likewise. * semantics.cc: Likewise. * tree.cc: Likewise. * typeck.cc: Likewise. * typeck2.cc: Likewise. * vtable-class-hierarchy.cc: Likewise. gcc/d/ChangeLog: PR other/116613 * d-attribs.cc: Add #define INCLUDE_MEMORY. * d-builtins.cc: Likewise. * d-codegen.cc: Likewise. * d-convert.cc: Likewise. * d-diagnostic.cc: Likewise. * d-frontend.cc: Likewise. * d-lang.cc: Likewise. * d-longdouble.cc: Likewise. * d-target.cc: Likewise. * decl.cc: Likewise. * expr.cc: Likewise. * intrinsics.cc: Likewise. * modules.cc: Likewise. * toir.cc: Likewise. * typeinfo.cc: Likewise. * types.cc: Likewise. gcc/fortran/ChangeLog: PR other/116613 * arith.cc: Add #define INCLUDE_MEMORY. * array.cc: Likewise. * bbt.cc: Likewise. * check.cc: Likewise. * class.cc: Likewise. * constructor.cc: Likewise. * convert.cc: Likewise. * cpp.cc: Likewise. * data.cc: Likewise. * decl.cc: Likewise. * dependency.cc: Likewise. * dump-parse-tree.cc: Likewise. * error.cc: Likewise. * expr.cc: Likewise. * f95-lang.cc: Likewise. * frontend-passes.cc: Likewise. * interface.cc: Likewise. * intrinsic.cc: Likewise. * io.cc: Likewise. * iresolve.cc: Likewise. * match.cc: Likewise. * matchexp.cc: Likewise. * misc.cc: Likewise. * module.cc: Likewise. * openmp.cc: Likewise. * options.cc: Likewise. * parse.cc: Likewise. * primary.cc: Likewise. * resolve.cc: Likewise. * scanner.cc: Likewise. * simplify.cc: Likewise. * st.cc: Likewise. * symbol.cc: Likewise. * target-memory.cc: Likewise. * trans-array.cc: Likewise. * trans-common.cc: Likewise. * trans-const.cc: Likewise. * trans-decl.cc: Likewise. * trans-expr.cc: Likewise. * trans-intrinsic.cc: Likewise. * trans-io.cc: Likewise. * trans-openmp.cc: Likewise. * trans-stmt.cc: Likewise. * trans-types.cc: Likewise. * trans.cc: Likewise. gcc/go/ChangeLog: PR other/116613 * go-backend.cc: Add #define INCLUDE_MEMORY. * go-lang.cc: Likewise. gcc/jit/ChangeLog: PR other/116613 * dummy-frontend.cc: Add #define INCLUDE_MEMORY. * jit-playback.cc: Likewise. * jit-recording.cc: Likewise. gcc/lto/ChangeLog: PR other/116613 * lto-common.cc: Add #define INCLUDE_MEMORY. * lto-dump.cc: Likewise. * lto-partition.cc: Likewise. * lto-symtab.cc: Likewise. * lto.cc: Likewise. gcc/m2/ChangeLog: PR other/116613 * gm2-gcc/gcc-consolidation.h: Add #define INCLUDE_MEMORY. * gm2-gcc/m2configure.cc: Likewise. * mc-boot/GASCII.cc: Regenerate. * mc-boot/GASCII.h: Ditto. * mc-boot/GArgs.cc: Ditto. * mc-boot/GArgs.h: Ditto. * mc-boot/GAssertion.cc: Ditto. * mc-boot/GAssertion.h: Ditto. * mc-boot/GBreak.cc: Ditto. * mc-boot/GBreak.h: Ditto. * mc-boot/GCOROUTINES.h: Ditto. * mc-boot/GCmdArgs.cc: Ditto. * mc-boot/GCmdArgs.h: Ditto. * mc-boot/GDebug.cc: Ditto. * mc-boot/GDebug.h: Ditto. * mc-boot/GDynamicStrings.cc: Ditto. * mc-boot/GDynamicStrings.h: Ditto. * mc-boot/GEnvironment.cc: Ditto. * mc-boot/GEnvironment.h: Ditto. * mc-boot/GFIO.cc: Ditto. * mc-boot/GFIO.h: Ditto. * mc-boot/GFormatStrings.cc: Ditto. * mc-boot/GFormatStrings.h: Ditto. * mc-boot/GFpuIO.cc: Ditto. * mc-boot/GFpuIO.h: Ditto. * mc-boot/GIO.cc: Ditto. * mc-boot/GIO.h: Ditto. * mc-boot/GIndexing.cc: Ditto. * mc-boot/GIndexing.h: Ditto. * mc-boot/GM2Dependent.cc: Ditto. * mc-boot/GM2Dependent.h: Ditto. * mc-boot/GM2EXCEPTION.cc: Ditto. * mc-boot/GM2EXCEPTION.h: Ditto. * mc-boot/GM2RTS.cc: Ditto. * mc-boot/GM2RTS.h: Ditto. * mc-boot/GMemUtils.cc: Ditto. * mc-boot/GMemUtils.h: Ditto. * mc-boot/GNumberIO.cc: Ditto. * mc-boot/GNumberIO.h: Ditto. * mc-boot/GPushBackInput.cc: Ditto. * mc-boot/GPushBackInput.h: Ditto. * mc-boot/GRTExceptions.cc: Ditto. * mc-boot/GRTExceptions.h: Ditto. * mc-boot/GRTco.h: Ditto. * mc-boot/GRTentity.h: Ditto. * mc-boot/GRTint.cc: Ditto. * mc-boot/GRTint.h: Ditto. * mc-boot/GSArgs.cc: Ditto. * mc-boot/GSArgs.h: Ditto. * mc-boot/GSFIO.cc: Ditto. * mc-boot/GSFIO.h: Ditto. * mc-boot/GSYSTEM.h: Ditto. * mc-boot/GSelective.h: Ditto. * mc-boot/GStdIO.cc: Ditto. * mc-boot/GStdIO.h: Ditto. * mc-boot/GStorage.cc: Ditto. * mc-boot/GStorage.h: Ditto. * mc-boot/GStrCase.cc: Ditto. * mc-boot/GStrCase.h: Ditto. * mc-boot/GStrIO.cc: Ditto. * mc-boot/GStrIO.h: Ditto. * mc-boot/GStrLib.cc: Ditto. * mc-boot/GStrLib.h: Ditto. * mc-boot/GStringConvert.cc: Ditto. * mc-boot/GStringConvert.h: Ditto. * mc-boot/GSysExceptions.h: Ditto. * mc-boot/GSysStorage.cc: Ditto. * mc-boot/GSysStorage.h: Ditto. * mc-boot/GTimeString.cc: Ditto. * mc-boot/GTimeString.h: Ditto. * mc-boot/GUnixArgs.h: Ditto. * mc-boot/Galists.cc: Ditto. * mc-boot/Galists.h: Ditto. * mc-boot/Gdecl.cc: Ditto. * mc-boot/Gdecl.h: Ditto. * mc-boot/Gdtoa.h: Ditto. * mc-boot/Gerrno.h: Ditto. * mc-boot/Gkeyc.cc: Ditto. * mc-boot/Gkeyc.h: Ditto. * mc-boot/Gldtoa.h: Ditto. * mc-boot/Glibc.h: Ditto. * mc-boot/Glibm.h: Ditto. * mc-boot/Glists.cc: Ditto. * mc-boot/Glists.h: Ditto. * mc-boot/GmcComment.cc: Ditto. * mc-boot/GmcComment.h: Ditto. * mc-boot/GmcComp.cc: Ditto. * mc-boot/GmcComp.h: Ditto. * mc-boot/GmcDebug.cc: Ditto. * mc-boot/GmcDebug.h: Ditto. * mc-boot/GmcError.cc: Ditto. * mc-boot/GmcError.h: Ditto. * mc-boot/GmcFileName.cc: Ditto. * mc-boot/GmcFileName.h: Ditto. * mc-boot/GmcLexBuf.cc: Ditto. * mc-boot/GmcLexBuf.h: Ditto. * mc-boot/GmcMetaError.cc: Ditto. * mc-boot/GmcMetaError.h: Ditto. * mc-boot/GmcOptions.cc: Ditto. * mc-boot/GmcOptions.h: Ditto. * mc-boot/GmcPreprocess.cc: Ditto. * mc-boot/GmcPreprocess.h: Ditto. * mc-boot/GmcPretty.cc: Ditto. * mc-boot/GmcPretty.h: Ditto. * mc-boot/GmcPrintf.cc: Ditto. * mc-boot/GmcPrintf.h: Ditto. * mc-boot/GmcQuiet.cc: Ditto. * mc-boot/GmcQuiet.h: Ditto. * mc-boot/GmcReserved.cc: Ditto. * mc-boot/GmcReserved.h: Ditto. * mc-boot/GmcSearch.cc: Ditto. * mc-boot/GmcSearch.h: Ditto. * mc-boot/GmcStack.cc: Ditto. * mc-boot/GmcStack.h: Ditto. * mc-boot/GmcStream.cc: Ditto. * mc-boot/GmcStream.h: Ditto. * mc-boot/Gmcflex.h: Ditto. * mc-boot/Gmcp1.cc: Ditto. * mc-boot/Gmcp1.h: Ditto. * mc-boot/Gmcp2.cc: Ditto. * mc-boot/Gmcp2.h: Ditto. * mc-boot/Gmcp3.cc: Ditto. * mc-boot/Gmcp3.h: Ditto. * mc-boot/Gmcp4.cc: Ditto. * mc-boot/Gmcp4.h: Ditto. * mc-boot/Gmcp5.cc: Ditto. * mc-boot/Gmcp5.h: Ditto. * mc-boot/GnameKey.cc: Ditto. * mc-boot/GnameKey.h: Ditto. * mc-boot/GsymbolKey.cc: Ditto. * mc-boot/GsymbolKey.h: Ditto. * mc-boot/Gtermios.h: Ditto. * mc-boot/Gtop.cc: Ditto. * mc-boot/Gvarargs.cc: Ditto. * mc-boot/Gvarargs.h: Ditto. * mc-boot/Gwlists.cc: Ditto. * mc-boot/Gwlists.h: Ditto. * mc-boot/Gwrapc.h: Ditto. * mc/keyc.mod (checkGccConfigSystem): Add #define INCLUDE_MEMORY. * pge-boot/GASCII.cc: Regenerate. * pge-boot/GASCII.h: Ditto. * pge-boot/GArgs.cc: Ditto. * pge-boot/GArgs.h: Ditto. * pge-boot/GAssertion.cc: Ditto. * pge-boot/GAssertion.h: Ditto. * pge-boot/GBreak.h: Ditto. * pge-boot/GCmdArgs.h: Ditto. * pge-boot/GDebug.cc: Ditto. * pge-boot/GDebug.h: Ditto. * pge-boot/GDynamicStrings.cc: Ditto. * pge-boot/GDynamicStrings.h: Ditto. * pge-boot/GEnvironment.h: Ditto. * pge-boot/GFIO.cc: Ditto. * pge-boot/GFIO.h: Ditto. * pge-boot/GFormatStrings.h: Ditto. * pge-boot/GFpuIO.h: Ditto. * pge-boot/GIO.cc: Ditto. * pge-boot/GIO.h: Ditto. * pge-boot/GIndexing.cc: Ditto. * pge-boot/GIndexing.h: Ditto. * pge-boot/GLists.cc: Ditto. * pge-boot/GLists.h: Ditto. * pge-boot/GM2Dependent.cc: Ditto. * pge-boot/GM2Dependent.h: Ditto. * pge-boot/GM2EXCEPTION.cc: Ditto. * pge-boot/GM2EXCEPTION.h: Ditto. * pge-boot/GM2RTS.cc: Ditto. * pge-boot/GM2RTS.h: Ditto. * pge-boot/GNameKey.cc: Ditto. * pge-boot/GNameKey.h: Ditto. * pge-boot/GNumberIO.cc: Ditto. * pge-boot/GNumberIO.h: Ditto. * pge-boot/GOutput.cc: Ditto. * pge-boot/GOutput.h: Ditto. * pge-boot/GPushBackInput.cc: Ditto. * pge-boot/GPushBackInput.h: Ditto. * pge-boot/GRTExceptions.cc: Ditto. * pge-boot/GRTExceptions.h: Ditto. * pge-boot/GSArgs.h: Ditto. * pge-boot/GSEnvironment.h: Ditto. * pge-boot/GSFIO.cc: Ditto. * pge-boot/GSFIO.h: Ditto. * pge-boot/GSYSTEM.h: Ditto. * pge-boot/GScan.h: Ditto. * pge-boot/GStdIO.cc: Ditto. * pge-boot/GStdIO.h: Ditto. * pge-boot/GStorage.cc: Ditto. * pge-boot/GStorage.h: Ditto. * pge-boot/GStrCase.cc: Ditto. * pge-boot/GStrCase.h: Ditto. * pge-boot/GStrIO.cc: Ditto. * pge-boot/GStrIO.h: Ditto. * pge-boot/GStrLib.cc: Ditto. * pge-boot/GStrLib.h: Ditto. * pge-boot/GStringConvert.h: Ditto. * pge-boot/GSymbolKey.cc: Ditto. * pge-boot/GSymbolKey.h: Ditto. * pge-boot/GSysExceptions.h: Ditto. * pge-boot/GSysStorage.cc: Ditto. * pge-boot/GSysStorage.h: Ditto. * pge-boot/GTimeString.h: Ditto. * pge-boot/GUnixArgs.h: Ditto. * pge-boot/Gbnflex.cc: Ditto. * pge-boot/Gbnflex.h: Ditto. * pge-boot/Gdtoa.h: Ditto. * pge-boot/Gerrno.h: Ditto. * pge-boot/Gldtoa.h: Ditto. * pge-boot/Glibc.h: Ditto. * pge-boot/Glibm.h: Ditto. * pge-boot/Gpge.cc: Ditto. * pge-boot/Gtermios.h: Ditto. * pge-boot/Gwrapc.h: Ditto. gcc/objc/ChangeLog: PR other/116613 * objc-act.cc: Add #define INCLUDE_MEMORY. * objc-encoding.cc: Likewise. * objc-gnu-runtime-abi-01.cc: Likewise. * objc-lang.cc: Likewise. * objc-next-runtime-abi-01.cc: Likewise. * objc-next-runtime-abi-02.cc: Likewise. * objc-runtime-shared-support.cc: Likewise. gcc/objcp/ChangeLog:: Add #define INCLUDE_MEMORY. PR other/116613 * objcp-decl.cc * objcp-lang.cc: Likewise. gcc/rust/ChangeLog: PR other/116613 * resolve/rust-ast-resolve-expr.cc: Add #define INCLUDE_MEMORY. * rust-attribs.cc: Likewise. * rust-system.h: Likewise. gcc/ChangeLog: PR other/116613 * asan.cc: Add #define INCLUDE_MEMORY. * attribs.cc: Likewise. (attr_access::array_as_string): Use diagnostic_context::clone_printer and use unique_ptr. * auto-profile.cc: Add #define INCLUDE_MEMORY. * calls.cc: Likewise. * cfganal.cc: Likewise. * cfgexpand.cc: Likewise. * cfghooks.cc: Likewise. * cfgloop.cc: Likewise. * cgraph.cc: Likewise. * cgraphclones.cc: Likewise. * cgraphunit.cc: Likewise. * collect-utils.cc: Likewise. * collect2.cc: Likewise. * common/config/aarch64/aarch64-common.cc: Likewise. * common/config/arm/arm-common.cc: Likewise. * common/config/avr/avr-common.cc: Likewise. * config/aarch64/aarch64-cc-fusion.cc: Likewise. * config/aarch64/aarch64-early-ra.cc: Likewise. * config/aarch64/aarch64-sve-builtins.cc: Likewise. * config/arc/arc.cc: Likewise. * config/arm/aarch-common.cc: Likewise. * config/arm/arm-mve-builtins.cc: Likewise. * config/avr/avr-devices.cc: Likewise. * config/avr/driver-avr.cc: Likewise. * config/bpf/bpf.cc: Likewise. * config/bpf/btfext-out.cc: Likewise. * config/bpf/core-builtins.cc: Likewise. * config/darwin.cc: Likewise. * config/i386/driver-i386.cc: Likewise. * config/i386/i386-builtins.cc: Likewise. * config/i386/i386-expand.cc: Likewise. * config/i386/i386-features.cc: Likewise. * config/i386/i386-options.cc: Likewise. * config/loongarch/loongarch-builtins.cc: Likewise. * config/mingw/winnt-cxx.cc: Likewise. * config/mingw/winnt.cc: Likewise. * config/mips/mips.cc: Likewise. * config/msp430/driver-msp430.cc: Likewise. * config/nvptx/mkoffload.cc: Likewise. * config/nvptx/nvptx.cc: Likewise. * config/riscv/riscv-avlprop.cc: Likewise. * config/riscv/riscv-vector-builtins.cc: Likewise. * config/riscv/riscv-vsetvl.cc: Likewise. * config/rs6000/driver-rs6000.cc: Likewise. * config/rs6000/host-darwin.cc: Likewise. * config/rs6000/rs6000-c.cc: Likewise. * config/s390/s390-c.cc: Likewise. * config/s390/s390.cc: Likewise. * config/sol2-cxx.cc: Likewise. * config/vms/vms-c.cc: Likewise. * config/xtensa/xtensa-dynconfig.cc: Likewise. * coroutine-passes.cc: Likewise. * coverage.cc: Likewise. * data-streamer-in.cc: Likewise. * data-streamer-out.cc: Likewise. * data-streamer.cc: Likewise. * diagnostic-buffer.h (diagnostic_buffer::~diagnostic_buffer): Delete. (diagnostic_buffer::m_per_format_buffer): Use std::unique_ptr. * diagnostic-client-data-hooks.h (make_compiler_data_hooks): Use std::unique_ptr for return type. * diagnostic-format-json.cc (json_output_format::make_per_format_buffer): Likewise. (diagnostic_output_format_init_json): Update for usage of std::unique_ptr in set_output_format. * diagnostic-format-sarif.cc (sarif_output_format::make_per_format_buffer): Use std::unique_ptr for return type. (diagnostic_output_format_init_sarif): Update for usage of std::unique_ptr. (test_message_with_embedded_link): Likewise for set_urlifier. * diagnostic-format-text.cc: Add #define INCLUDE_MEMORY. Include "make-unique.h". (diagnostic_text_output_format::set_buffer): Use std::unique_ptr. * diagnostic-format-text.h (diagnostic_text_output_format::set_buffer): Likewise. * diagnostic-format.h (diagnostic_output_format::make_per_format_buffer): Likewise. * diagnostic-global-context.cc: * diagnostic-macro-unwinding.cc: Likewise. * diagnostic-show-locus.cc: Likewise. * diagnostic-spec.cc: Likewise. * diagnostic.cc (diagnostic_context::set_output_format): Use std::unique_ptr for input. (diagnostic_context::set_client_data_hooks): Likewise. (diagnostic_context::set_option_manager): Likewise. (diagnostic_context::set_urlifier): Likewise. (diagnostic_context::set_diagnostic_buffer): Update for use of std::unique_ptr. (diagnostic_buffer::diagnostic_buffer): Likewise. (diagnostic_buffer::~diagnostic_buffer): Delete. * diagnostic.h: Complain if INCLUDE_MEMORY was not defined. (diagnostic_context::set_output_format): Use std::unique_ptr for input. (diagnostic_context::set_client_data_hooks): Likewise. (diagnostic_context::set_option_manager): Likewise. (diagnostic_context::set_urlifier): Likewise. (diagnostic_context::clone_printer): New. (diagnostic_context::m_printer): Update comment. (diagnostic_context::m_option_mgr): Likewise. (diagnostic_context::m_urlifier): Likewise. (diagnostic_context::m_edit_context_ptr): Likewise. (diagnostic_context::m_output_format): Likewise. (diagnostic_context::m_client_data_hooks): Likewise. (diagnostic_context::m_theme): Likewise. * digraph.cc: Add #define INCLUDE_MEMORY. * dwarf2out.cc: Likewise. * edit-context.cc: Likewise. * except.cc: Likewise. * expr.cc: Likewise. * file-prefix-map.cc: Likewise. * final.cc: Likewise. * fwprop.cc: Likewise. * gcc-plugin.h: Likewise. * gcc-rich-location.cc: Likewise. * gcc-urlifier.cc: Likewise. Add #include "make-unique.h". (make_gcc_urlifier): Use std::unique_ptr and ::make_unique. * gcc-urlifier.h (make_gcc_urlifier): Use std::unique_ptr. * gcc.cc: Add #define INCLUDE_MEMORY. Include "pretty-print-urlifier.h". * gcov-dump.cc: Add #define INCLUDE_MEMORY. * gcov-tool.cc: Likewise. * gengtype.cc (open_base_files): Likewise to output. * genmatch.cc: Likewise. * gimple-fold.cc: Likewise. * gimple-harden-conditionals.cc: Likewise. * gimple-harden-control-flow.cc: Likewise. * gimple-if-to-switch.cc: Likewise. * gimple-lower-bitint.cc: Likewise. * gimple-predicate-analysis.cc: Likewise. * gimple-pretty-print.cc: Likewise. * gimple-range-cache.cc: Likewise. * gimple-range-edge.cc: Likewise. * gimple-range-fold.cc: Likewise. * gimple-range-gori.cc: Likewise. * gimple-range-infer.cc: Likewise. * gimple-range-op.cc: Likewise. * gimple-range-path.cc: Likewise. * gimple-range-phi.cc: Likewise. * gimple-range-trace.cc: Likewise. * gimple-range.cc: Likewise. * gimple-ssa-backprop.cc: Likewise. * gimple-ssa-sprintf.cc: Likewise. * gimple-ssa-store-merging.cc: Likewise. * gimple-ssa-strength-reduction.cc: Likewise. * gimple-ssa-warn-access.cc: Likewise. * gimple-ssa-warn-alloca.cc: Likewise. * gimple-ssa-warn-restrict.cc: Likewise. * gimple-streamer-in.cc: Likewise. * gimple-streamer-out.cc: Likewise. * gimple.cc: Likewise. * gimplify.cc: Likewise. * graph.cc: Likewise. * graphviz.cc: Likewise. * input.cc: Likewise. * ipa-cp.cc: Likewise. * ipa-devirt.cc: Likewise. * ipa-fnsummary.cc: Likewise. * ipa-free-lang-data.cc: Likewise. * ipa-icf-gimple.cc: Likewise. * ipa-icf.cc: Likewise. * ipa-inline-analysis.cc: Likewise. * ipa-inline.cc: Likewise. * ipa-modref-tree.cc: Likewise. * ipa-modref.cc: Likewise. * ipa-param-manipulation.cc: Likewise. * ipa-polymorphic-call.cc: Likewise. * ipa-predicate.cc: Likewise. * ipa-profile.cc: Likewise. * ipa-prop.cc: Likewise. * ipa-pure-const.cc: Likewise. * ipa-reference.cc: Likewise. * ipa-split.cc: Likewise. * ipa-sra.cc: Likewise. * ipa-strub.cc: Likewise. * ipa-utils.cc: Likewise. * langhooks.cc: Likewise. * late-combine.cc: Likewise. * lto-cgraph.cc: Likewise. * lto-compress.cc: Likewise. * lto-opts.cc: Likewise. * lto-section-in.cc: Likewise. * lto-section-out.cc: Likewise. * lto-streamer-in.cc: Likewise. * lto-streamer-out.cc: Likewise. * lto-streamer.cc: Likewise. * lto-wrapper.cc: Likewise. Include "make-unique.h". (main): Use ::make_unique when creating option manager. * multiple_target.cc: Likewise. * omp-expand.cc: Likewise. * omp-general.cc: Likewise. * omp-low.cc: Likewise. * omp-oacc-neuter-broadcast.cc: Likewise. * omp-offload.cc: Likewise. * omp-simd-clone.cc: Likewise. * optc-gen.awk: Likewise in output. * optc-save-gen.awk: Likewise in output. * options-urls-cc-gen.awk: Likewise in output. * opts-common.cc: Likewise. * opts-global.cc: Likewise. * opts.cc: Likewise. * pair-fusion.cc: Likewise. * passes.cc: Likewise. * pointer-query.cc: Likewise. * predict.cc: Likewise. * pretty-print.cc (pretty_printer::clone): Use std::unique_ptr and ::make_unique. * pretty-print.h: Complain if INCLUDE_MEMORY is not defined. (pretty_printer::clone): Use std::unique_ptr. * print-rtl.cc: Add #define INCLUDE_MEMORY. * print-tree.cc: Likewise. * profile-count.cc: Likewise. * range-op-float.cc: Likewise. * range-op-ptr.cc: Likewise. * range-op.cc: Likewise. * range.cc: Likewise. * read-rtl-function.cc: Likewise. * rtl-error.cc: Likewise. * rtl-ssa/accesses.cc: Likewise. * rtl-ssa/blocks.cc: Likewise. * rtl-ssa/changes.cc: Likewise. * rtl-ssa/functions.cc: Likewise. * rtl-ssa/insns.cc: Likewise. * rtl-ssa/movement.cc: Likewise. * rtl-tests.cc: Likewise. * sanopt.cc: Likewise. * sched-rgn.cc: Likewise. * selftest-diagnostic-path.cc: Likewise. * selftest-diagnostic.cc: Likewise. * splay-tree-utils.cc: Likewise. * sreal.cc: Likewise. * stmt.cc: Likewise. * substring-locations.cc: Likewise. * symtab-clones.cc: Likewise. * symtab-thunks.cc: Likewise. * symtab.cc: Likewise. * text-art/box-drawing.cc: Likewise. * text-art/canvas.cc: Likewise. * text-art/ruler.cc: Likewise. * text-art/selftests.cc: Likewise. * text-art/theme.cc: Likewise. * toplev.cc: Likewise. Include "make-unique.h". (general_init): Use ::make_unique when setting option_manager. * trans-mem.cc: Add #define INCLUDE_MEMORY. * tree-affine.cc: Likewise. * tree-call-cdce.cc: Likewise. * tree-cfg.cc: Likewise. * tree-chrec.cc: Likewise. * tree-dfa.cc: Likewise. * tree-diagnostic-client-data-hooks.cc: Include "make-unique.h". (make_compiler_data_hooks): Use std::unique_ptr and ::make_unique. * tree-diagnostic.cc: Add #define INCLUDE_MEMORY. * tree-dump.cc: Likewise. * tree-inline.cc: Likewise. * tree-into-ssa.cc: Likewise. * tree-logical-location.cc: Likewise. * tree-nested.cc: Likewise. * tree-nrv.cc: Likewise. * tree-object-size.cc: Likewise. * tree-outof-ssa.cc: Likewise. * tree-pretty-print.cc: Likewise. * tree-profile.cc: Likewise. * tree-scalar-evolution.cc: Likewise. * tree-sra.cc: Likewise. * tree-ssa-address.cc: Likewise. * tree-ssa-alias.cc: Likewise. * tree-ssa-ccp.cc: Likewise. * tree-ssa-coalesce.cc: Likewise. * tree-ssa-copy.cc: Likewise. * tree-ssa-dce.cc: Likewise. * tree-ssa-dom.cc: Likewise. * tree-ssa-forwprop.cc: Likewise. * tree-ssa-ifcombine.cc: Likewise. * tree-ssa-loop-ch.cc: Likewise. * tree-ssa-loop-im.cc: Likewise. * tree-ssa-loop-manip.cc: Likewise. * tree-ssa-loop-niter.cc: Likewise. * tree-ssa-loop-split.cc: Likewise. * tree-ssa-math-opts.cc: Likewise. * tree-ssa-operands.cc: Likewise. * tree-ssa-phiprop.cc: Likewise. * tree-ssa-pre.cc: Likewise. * tree-ssa-propagate.cc: Likewise. * tree-ssa-reassoc.cc: Likewise. * tree-ssa-sccvn.cc: Likewise. * tree-ssa-scopedtables.cc: Likewise. * tree-ssa-sink.cc: Likewise. * tree-ssa-strlen.cc: Likewise. * tree-ssa-structalias.cc: Likewise. * tree-ssa-ter.cc: Likewise. * tree-ssa-uninit.cc: Likewise. * tree-ssa.cc: Likewise. * tree-ssanames.cc: Likewise. * tree-stdarg.cc: Likewise. * tree-streamer-in.cc: Likewise. * tree-streamer-out.cc: Likewise. * tree-streamer.cc: Likewise. * tree-switch-conversion.cc: Likewise. * tree-tailcall.cc: Likewise. * tree-vrp.cc: Likewise. * tree.cc: Likewise. * ubsan.cc: Likewise. * value-pointer-equiv.cc: Likewise. * value-prof.cc: Likewise. * value-query.cc: Likewise. * value-range-pretty-print.cc: Likewise. * value-range-storage.cc: Likewise. * value-range.cc: Likewise. * value-relation.cc: Likewise. * var-tracking.cc: Likewise. * varpool.cc: Likewise. * vr-values.cc: Likewise. * wide-int-print.cc: Likewise. gcc/testsuite/ChangeLog: PR other/116613 * gcc.dg/plugin/diagnostic_group_plugin.c: Update for use of std::unique_ptr. * gcc.dg/plugin/diagnostic_plugin_xhtml_format.c: Likewise. * gcc.dg/plugin/ggcplug.c: Likewise. libgcc/ChangeLog: PR other/116613 * libgcov-util.c: Add #define INCLUDE_MEMORY. Signed-off-by: David Malcolm <dmalcolm@redhat.com> Co-authored-by: Gaius Mulley <gaiusmod2@gmail.com> Signed-off-by: David Malcolm <dmalcolm@redhat.com>
1470 lines
39 KiB
C
1470 lines
39 KiB
C
/* Utility functions for reading gcda files into in-memory
|
|
gcov_info structures and offline profile processing. */
|
|
/* Copyright (C) 2014-2024 Free Software Foundation, Inc.
|
|
Contributed by Rong Xu <xur@google.com>.
|
|
|
|
This file is part of GCC.
|
|
|
|
GCC 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, or (at your option) any later
|
|
version.
|
|
|
|
GCC 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.
|
|
|
|
Under Section 7 of GPL version 3, you are granted additional
|
|
permissions described in the GCC Runtime Library Exception, version
|
|
3.1, as published by the Free Software Foundation.
|
|
|
|
You should have received a copy of the GNU General Public License and
|
|
a copy of the GCC Runtime Library Exception along with this program;
|
|
see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
#define IN_GCOV_TOOL 1
|
|
|
|
#define INCLUDE_MEMORY
|
|
#include "libgcov.h"
|
|
#include "intl.h"
|
|
#include "diagnostic.h"
|
|
#include "version.h"
|
|
#include "demangle.h"
|
|
#include "gcov-io.h"
|
|
|
|
/* Borrowed from basic-block.h. */
|
|
#define RDIV(X,Y) (((X) + (Y) / 2) / (Y))
|
|
|
|
extern gcov_position_t gcov_position();
|
|
extern int gcov_is_error();
|
|
|
|
/* Verbose mode for debug. */
|
|
static int verbose;
|
|
|
|
/* Set verbose flag. */
|
|
void gcov_set_verbose (void)
|
|
{
|
|
verbose = 1;
|
|
}
|
|
|
|
/* The following part is to read Gcda and reconstruct GCOV_INFO. */
|
|
|
|
#include "obstack.h"
|
|
#include <unistd.h>
|
|
#ifdef HAVE_FTW_H
|
|
#include <ftw.h>
|
|
#endif
|
|
|
|
static void tag_function (unsigned, int);
|
|
static void tag_blocks (unsigned, int);
|
|
static void tag_arcs (unsigned, int);
|
|
static void tag_lines (unsigned, int);
|
|
static void tag_counters (unsigned, int);
|
|
static void tag_summary (unsigned, int);
|
|
|
|
/* The gcov_info for the first module. */
|
|
static struct gcov_info *curr_gcov_info;
|
|
/* The gcov_info being processed. */
|
|
static struct gcov_info *gcov_info_head;
|
|
/* This variable contains all the functions in current module. */
|
|
static struct obstack fn_info;
|
|
/* The function being processed. */
|
|
static struct gcov_fn_info *curr_fn_info;
|
|
/* The number of functions seen so far. */
|
|
static unsigned num_fn_info;
|
|
/* This variable contains all the counters for current module. */
|
|
static int k_ctrs_mask[GCOV_COUNTERS];
|
|
/* The kind of counters that have been seen. */
|
|
static struct gcov_ctr_info k_ctrs[GCOV_COUNTERS];
|
|
/* Number of kind of counters that have been seen. */
|
|
static int k_ctrs_types;
|
|
|
|
/* Merge functions for counters. */
|
|
#define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) __gcov_merge ## FN_TYPE,
|
|
static gcov_merge_fn ctr_merge_functions[GCOV_COUNTERS] = {
|
|
#include "gcov-counter.def"
|
|
};
|
|
#undef DEF_GCOV_COUNTER
|
|
|
|
/* Set the ctrs field in gcov_fn_info object FN_INFO. */
|
|
|
|
static void
|
|
set_fn_ctrs (struct gcov_fn_info *fn_info)
|
|
{
|
|
int j = 0, i;
|
|
|
|
for (i = 0; i < GCOV_COUNTERS; i++)
|
|
{
|
|
if (k_ctrs_mask[i] == 0)
|
|
continue;
|
|
fn_info->ctrs[j].num = k_ctrs[i].num;
|
|
fn_info->ctrs[j].values = k_ctrs[i].values;
|
|
j++;
|
|
}
|
|
if (k_ctrs_types == 0)
|
|
k_ctrs_types = j;
|
|
else
|
|
gcc_assert (j == k_ctrs_types);
|
|
}
|
|
|
|
/* For each tag in gcda file, we have an entry here.
|
|
TAG is the tag value; NAME is the tag name; and
|
|
PROC is the handler function. */
|
|
|
|
typedef struct tag_format
|
|
{
|
|
unsigned tag;
|
|
char const *name;
|
|
void (*proc) (unsigned, int);
|
|
} tag_format_t;
|
|
|
|
/* Handler table for various Tags. */
|
|
|
|
static const tag_format_t tag_table[] =
|
|
{
|
|
{0, "NOP", NULL},
|
|
{0, "UNKNOWN", NULL},
|
|
{0, "COUNTERS", tag_counters},
|
|
{GCOV_TAG_FUNCTION, "FUNCTION", tag_function},
|
|
{GCOV_TAG_BLOCKS, "BLOCKS", tag_blocks},
|
|
{GCOV_TAG_ARCS, "ARCS", tag_arcs},
|
|
{GCOV_TAG_LINES, "LINES", tag_lines},
|
|
{GCOV_TAG_OBJECT_SUMMARY, "OBJECT_SUMMARY", tag_summary},
|
|
{0, NULL, NULL}
|
|
};
|
|
|
|
/* Handler for reading function tag. */
|
|
|
|
static void
|
|
tag_function (unsigned tag ATTRIBUTE_UNUSED, int length ATTRIBUTE_UNUSED)
|
|
{
|
|
int i;
|
|
|
|
/* write out previous fn_info. */
|
|
if (num_fn_info)
|
|
{
|
|
set_fn_ctrs (curr_fn_info);
|
|
obstack_ptr_grow (&fn_info, curr_fn_info);
|
|
}
|
|
|
|
/* Here we over allocate a bit, using GCOV_COUNTERS instead of the actual active
|
|
counter types. */
|
|
curr_fn_info = (struct gcov_fn_info *) xcalloc (sizeof (struct gcov_fn_info)
|
|
+ GCOV_COUNTERS * sizeof (struct gcov_ctr_info), 1);
|
|
|
|
for (i = 0; i < GCOV_COUNTERS; i++)
|
|
k_ctrs[i].num = 0;
|
|
k_ctrs_types = 0;
|
|
|
|
curr_fn_info->key = curr_gcov_info;
|
|
curr_fn_info->ident = gcov_read_unsigned ();
|
|
curr_fn_info->lineno_checksum = gcov_read_unsigned ();
|
|
curr_fn_info->cfg_checksum = gcov_read_unsigned ();
|
|
num_fn_info++;
|
|
|
|
if (verbose)
|
|
fnotice (stdout, "tag one function id=%d\n", curr_fn_info->ident);
|
|
}
|
|
|
|
/* Handler for reading block tag. */
|
|
|
|
static void
|
|
tag_blocks (unsigned tag ATTRIBUTE_UNUSED, int length ATTRIBUTE_UNUSED)
|
|
{
|
|
/* TBD: gcov-tool currently does not handle gcno files. Assert here. */
|
|
gcc_unreachable ();
|
|
}
|
|
|
|
/* Handler for reading flow arc tag. */
|
|
|
|
static void
|
|
tag_arcs (unsigned tag ATTRIBUTE_UNUSED, int length ATTRIBUTE_UNUSED)
|
|
{
|
|
/* TBD: gcov-tool currently does not handle gcno files. Assert here. */
|
|
gcc_unreachable ();
|
|
}
|
|
|
|
/* Handler for reading line tag. */
|
|
|
|
static void
|
|
tag_lines (unsigned tag ATTRIBUTE_UNUSED, int length ATTRIBUTE_UNUSED)
|
|
{
|
|
/* TBD: gcov-tool currently does not handle gcno files. Assert here. */
|
|
gcc_unreachable ();
|
|
}
|
|
|
|
/* Handler for reading counters array tag with value as TAG and length of LENGTH. */
|
|
|
|
static void
|
|
tag_counters (unsigned tag, int length)
|
|
{
|
|
unsigned n_counts = GCOV_TAG_COUNTER_NUM (abs (length));
|
|
gcov_type *values;
|
|
unsigned ix;
|
|
unsigned tag_ix;
|
|
|
|
tag_ix = GCOV_COUNTER_FOR_TAG (tag);
|
|
gcc_assert (tag_ix < GCOV_COUNTERS);
|
|
k_ctrs_mask [tag_ix] = 1;
|
|
gcc_assert (k_ctrs[tag_ix].num == 0);
|
|
k_ctrs[tag_ix].num = n_counts;
|
|
|
|
k_ctrs[tag_ix].values = values = (gcov_type *) xcalloc (n_counts,
|
|
sizeof (gcov_type));
|
|
gcc_assert (values);
|
|
|
|
if (length > 0)
|
|
for (ix = 0; ix != n_counts; ix++)
|
|
values[ix] = gcov_read_counter ();
|
|
}
|
|
|
|
/* Handler for reading summary tag. */
|
|
|
|
static void
|
|
tag_summary (unsigned tag ATTRIBUTE_UNUSED, int ATTRIBUTE_UNUSED)
|
|
{
|
|
gcov_read_summary (&curr_gcov_info->summary);
|
|
}
|
|
|
|
/* This function is called at the end of reading a gcda file.
|
|
It flushes the contents in curr_fn_info to gcov_info object OBJ_INFO. */
|
|
|
|
static void
|
|
read_gcda_finalize (struct gcov_info *obj_info)
|
|
{
|
|
int i;
|
|
|
|
set_fn_ctrs (curr_fn_info);
|
|
obstack_ptr_grow (&fn_info, curr_fn_info);
|
|
|
|
/* We set the following fields: merge, n_functions, functions
|
|
and summary. */
|
|
obj_info->n_functions = num_fn_info;
|
|
obj_info->functions = (struct gcov_fn_info**) obstack_finish (&fn_info);
|
|
|
|
/* wrap all the counter array. */
|
|
for (i=0; i< GCOV_COUNTERS; i++)
|
|
{
|
|
if (k_ctrs_mask[i])
|
|
obj_info->merge[i] = ctr_merge_functions[i];
|
|
}
|
|
}
|
|
|
|
/* Read the content of a gcda file FILENAME, and return a gcov_info data structure.
|
|
Program level summary CURRENT_SUMMARY will also be updated. */
|
|
|
|
static struct gcov_info *
|
|
read_gcda_file (const char *filename)
|
|
{
|
|
unsigned tags[4];
|
|
unsigned depth = 0;
|
|
unsigned version;
|
|
struct gcov_info *obj_info;
|
|
int i;
|
|
|
|
for (i=0; i< GCOV_COUNTERS; i++)
|
|
k_ctrs_mask[i] = 0;
|
|
k_ctrs_types = 0;
|
|
|
|
/* Read magic. */
|
|
if (!gcov_magic (gcov_read_unsigned (), GCOV_DATA_MAGIC))
|
|
{
|
|
fnotice (stderr, "%s:not a gcov data file\n", filename);
|
|
return NULL;
|
|
}
|
|
|
|
/* Read version. */
|
|
version = gcov_read_unsigned ();
|
|
if (version != GCOV_VERSION)
|
|
{
|
|
fnotice (stderr, "%s:incorrect gcov version %d vs %d \n", filename, version, GCOV_VERSION);
|
|
return NULL;
|
|
}
|
|
|
|
/* Instantiate a gcov_info object. */
|
|
curr_gcov_info = obj_info = (struct gcov_info *) xcalloc (sizeof (struct gcov_info) +
|
|
sizeof (struct gcov_ctr_info) * GCOV_COUNTERS, 1);
|
|
|
|
obj_info->version = version;
|
|
obj_info->filename = filename;
|
|
obstack_init (&fn_info);
|
|
num_fn_info = 0;
|
|
curr_fn_info = 0;
|
|
|
|
/* Prepend to global gcov info list. */
|
|
obj_info->next = gcov_info_head;
|
|
gcov_info_head = obj_info;
|
|
|
|
/* Read stamp. */
|
|
obj_info->stamp = gcov_read_unsigned ();
|
|
|
|
/* Read checksum. */
|
|
obj_info->checksum = gcov_read_unsigned ();
|
|
|
|
while (1)
|
|
{
|
|
gcov_position_t base;
|
|
unsigned tag, length;
|
|
tag_format_t const *format;
|
|
unsigned tag_depth;
|
|
int error;
|
|
unsigned mask;
|
|
|
|
tag = gcov_read_unsigned ();
|
|
if (!tag)
|
|
break;
|
|
int read_length = (int)gcov_read_unsigned ();
|
|
length = read_length > 0 ? read_length : 0;
|
|
base = gcov_position ();
|
|
mask = GCOV_TAG_MASK (tag) >> 1;
|
|
for (tag_depth = 4; mask; mask >>= 8)
|
|
{
|
|
if (((mask & 0xff) != 0xff))
|
|
{
|
|
warning (0, "%s:tag %qx is invalid", filename, tag);
|
|
break;
|
|
}
|
|
tag_depth--;
|
|
}
|
|
for (format = tag_table; format->name; format++)
|
|
if (format->tag == tag)
|
|
goto found;
|
|
format = &tag_table[GCOV_TAG_IS_COUNTER (tag) ? 2 : 1];
|
|
found:;
|
|
if (tag)
|
|
{
|
|
if (depth && depth < tag_depth)
|
|
{
|
|
if (!GCOV_TAG_IS_SUBTAG (tags[depth - 1], tag))
|
|
warning (0, "%s:tag %qx is incorrectly nested",
|
|
filename, tag);
|
|
}
|
|
depth = tag_depth;
|
|
tags[depth - 1] = tag;
|
|
}
|
|
|
|
if (format->proc)
|
|
{
|
|
unsigned long actual_length;
|
|
|
|
(*format->proc) (tag, read_length);
|
|
|
|
actual_length = gcov_position () - base;
|
|
if (actual_length > length)
|
|
warning (0, "%s:record size mismatch %lu bytes overread",
|
|
filename, actual_length - length);
|
|
else if (length > actual_length)
|
|
warning (0, "%s:record size mismatch %lu bytes unread",
|
|
filename, length - actual_length);
|
|
}
|
|
|
|
gcov_sync (base, length);
|
|
if ((error = gcov_is_error ()))
|
|
{
|
|
warning (0, error < 0 ? "%s:counter overflow at %lu" :
|
|
"%s:read error at %lu", filename,
|
|
(long unsigned) gcov_position ());
|
|
break;
|
|
}
|
|
}
|
|
|
|
read_gcda_finalize (obj_info);
|
|
|
|
return obj_info;
|
|
}
|
|
|
|
#ifdef HAVE_FTW_H
|
|
/* This will be called by ftw(). It opens and read a gcda file FILENAME.
|
|
Return a non-zero value to stop the tree walk. */
|
|
|
|
static int
|
|
ftw_read_file (const char *filename,
|
|
const struct stat *status ATTRIBUTE_UNUSED,
|
|
int type)
|
|
{
|
|
size_t filename_len;
|
|
size_t suffix_len;
|
|
|
|
/* Only read regular files. */
|
|
if (type != FTW_F)
|
|
return 0;
|
|
|
|
filename_len = strlen (filename);
|
|
suffix_len = strlen (GCOV_DATA_SUFFIX);
|
|
|
|
if (filename_len <= suffix_len)
|
|
return 0;
|
|
|
|
if (strcmp(filename + filename_len - suffix_len, GCOV_DATA_SUFFIX))
|
|
return 0;
|
|
|
|
if (verbose)
|
|
fnotice (stderr, "reading file: %s\n", filename);
|
|
|
|
if (!gcov_open (filename, 1))
|
|
{
|
|
fnotice (stderr, "%s:cannot open:%s\n", filename, xstrerror (errno));
|
|
return 0;
|
|
}
|
|
|
|
(void)read_gcda_file (xstrdup (filename));
|
|
gcov_close ();
|
|
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
/* Initializer for reading a profile dir. */
|
|
|
|
static inline void
|
|
read_profile_dir_init (void)
|
|
{
|
|
gcov_info_head = 0;
|
|
}
|
|
|
|
/* Driver for read a profile directory and convert into gcov_info list in memory.
|
|
Return NULL on error,
|
|
Return the head of gcov_info list on success. */
|
|
|
|
struct gcov_info *
|
|
gcov_read_profile_dir (const char* dir_name, int recompute_summary ATTRIBUTE_UNUSED)
|
|
{
|
|
char *pwd;
|
|
int ret;
|
|
|
|
read_profile_dir_init ();
|
|
|
|
if (access (dir_name, R_OK) != 0)
|
|
{
|
|
fnotice (stderr, "cannot access directory %s\n", dir_name);
|
|
return NULL;
|
|
}
|
|
pwd = getcwd (NULL, 0);
|
|
gcc_assert (pwd);
|
|
ret = chdir (dir_name);
|
|
if (ret !=0)
|
|
{
|
|
fnotice (stderr, "%s is not a directory\n", dir_name);
|
|
return NULL;
|
|
}
|
|
#ifdef HAVE_FTW_H
|
|
ftw (".", ftw_read_file, 50);
|
|
#endif
|
|
chdir (pwd);
|
|
free (pwd);
|
|
|
|
return gcov_info_head;;
|
|
}
|
|
|
|
/* This part of the code is to merge profile counters. These
|
|
variables are set in merge_wrapper and to be used by
|
|
global function gcov_read_counter_mem() and gcov_get_merge_weight. */
|
|
|
|
/* We save the counter value address to this variable. */
|
|
static gcov_type *gcov_value_buf;
|
|
|
|
/* The number of counter values to be read by current merging. */
|
|
static gcov_unsigned_t gcov_value_buf_size;
|
|
|
|
/* The index of counter values being read. */
|
|
static gcov_unsigned_t gcov_value_buf_pos;
|
|
|
|
/* The weight of current merging. */
|
|
static unsigned gcov_merge_weight;
|
|
|
|
/* Read a counter value from gcov_value_buf array. */
|
|
|
|
gcov_type
|
|
gcov_read_counter_mem (void)
|
|
{
|
|
gcov_type ret;
|
|
gcc_assert (gcov_value_buf_pos < gcov_value_buf_size);
|
|
ret = *(gcov_value_buf + gcov_value_buf_pos);
|
|
++gcov_value_buf_pos;
|
|
return ret;
|
|
}
|
|
|
|
/* Return the recorded merge weight. */
|
|
|
|
unsigned
|
|
gcov_get_merge_weight (void)
|
|
{
|
|
return gcov_merge_weight;
|
|
}
|
|
|
|
/* A wrapper function for merge functions. It sets up the
|
|
value buffer and weights and then calls the merge function. */
|
|
|
|
static void
|
|
merge_wrapper (gcov_merge_fn f, gcov_type *v1, gcov_unsigned_t n1,
|
|
gcov_type *v2, gcov_unsigned_t n2, unsigned w)
|
|
{
|
|
gcov_value_buf = v2;
|
|
gcov_value_buf_pos = 0;
|
|
gcov_value_buf_size = n2;
|
|
gcov_merge_weight = w;
|
|
(*f) (v1, n1);
|
|
}
|
|
|
|
/* Convert on disk representation of a TOPN counter to in memory representation
|
|
that is expected from __gcov_merge_topn function. */
|
|
|
|
static void
|
|
topn_to_memory_representation (struct gcov_ctr_info *info)
|
|
{
|
|
auto_vec<gcov_type> output;
|
|
gcov_type *values = info->values;
|
|
int count = info->num;
|
|
|
|
while (count > 0)
|
|
{
|
|
output.safe_push (values[0]);
|
|
gcov_type n = values[1];
|
|
output.safe_push (n);
|
|
if (n > 0)
|
|
{
|
|
struct gcov_kvp *tuples
|
|
= (struct gcov_kvp *)xcalloc (n, sizeof (struct gcov_kvp));
|
|
for (unsigned i = 0; i < n - 1; i++)
|
|
tuples[i].next = &tuples[i + 1];
|
|
for (unsigned i = 0; i < n; i++)
|
|
{
|
|
tuples[i].value = values[2 + 2 * i];
|
|
tuples[i].count = values[2 + 2 * i + 1];
|
|
}
|
|
output.safe_push ((intptr_t)&tuples[0]);
|
|
}
|
|
else
|
|
output.safe_push (0);
|
|
|
|
unsigned len = 2 * n + 2;
|
|
values += len;
|
|
count -= len;
|
|
}
|
|
gcc_assert (count == 0);
|
|
|
|
/* Allocate new buffer and copy it there. */
|
|
info->num = output.length ();
|
|
info->values = (gcov_type *)xmalloc (sizeof (gcov_type) * info->num);
|
|
for (unsigned i = 0; i < info->num; i++)
|
|
info->values[i] = output[i];
|
|
}
|
|
|
|
/* Offline tool to manipulate profile data.
|
|
This tool targets on matched profiles. But it has some tolerance on
|
|
unmatched profiles.
|
|
When merging p1 to p2 (p2 is the dst),
|
|
* m.gcda in p1 but not in p2: append m.gcda to p2 with specified weight;
|
|
emit warning
|
|
* m.gcda in p2 but not in p1: keep m.gcda in p2 and multiply by
|
|
specified weight; emit warning.
|
|
* m.gcda in both p1 and p2:
|
|
** p1->m.gcda->f checksum matches p2->m.gcda->f: simple merge.
|
|
** p1->m.gcda->f checksum does not matches p2->m.gcda->f: keep
|
|
p2->m.gcda->f and
|
|
drop p1->m.gcda->f. A warning is emitted. */
|
|
|
|
/* Add INFO2's counter to INFO1, multiplying by weight W. */
|
|
|
|
static int
|
|
gcov_merge (struct gcov_info *info1, struct gcov_info *info2, int w)
|
|
{
|
|
unsigned f_ix;
|
|
unsigned n_functions = info1->n_functions;
|
|
int has_mismatch = 0;
|
|
|
|
gcc_assert (info2->n_functions == n_functions);
|
|
|
|
/* Merge summary. */
|
|
info1->summary.runs += info2->summary.runs;
|
|
info1->summary.sum_max += info2->summary.sum_max;
|
|
|
|
for (f_ix = 0; f_ix < n_functions; f_ix++)
|
|
{
|
|
unsigned t_ix;
|
|
struct gcov_fn_info *gfi_ptr1 = info1->functions[f_ix];
|
|
struct gcov_fn_info *gfi_ptr2 = info2->functions[f_ix];
|
|
struct gcov_ctr_info *ci_ptr1, *ci_ptr2;
|
|
|
|
if (!gfi_ptr1 || gfi_ptr1->key != info1)
|
|
continue;
|
|
if (!gfi_ptr2 || gfi_ptr2->key != info2)
|
|
continue;
|
|
|
|
if (gfi_ptr1->cfg_checksum != gfi_ptr2->cfg_checksum)
|
|
{
|
|
fnotice (stderr, "in %s, cfg_checksum mismatch, skipping\n",
|
|
info1->filename);
|
|
has_mismatch = 1;
|
|
continue;
|
|
}
|
|
ci_ptr1 = gfi_ptr1->ctrs;
|
|
ci_ptr2 = gfi_ptr2->ctrs;
|
|
for (t_ix = 0; t_ix != GCOV_COUNTERS; t_ix++)
|
|
{
|
|
gcov_merge_fn merge1 = info1->merge[t_ix];
|
|
gcov_merge_fn merge2 = info2->merge[t_ix];
|
|
|
|
gcc_assert (merge1 == merge2);
|
|
if (!merge1)
|
|
continue;
|
|
|
|
if (merge1 == __gcov_merge_topn)
|
|
topn_to_memory_representation (ci_ptr1);
|
|
else
|
|
gcc_assert (ci_ptr1->num == ci_ptr2->num);
|
|
|
|
merge_wrapper (merge1, ci_ptr1->values, ci_ptr1->num,
|
|
ci_ptr2->values, ci_ptr2->num, w);
|
|
ci_ptr1++;
|
|
ci_ptr2++;
|
|
}
|
|
}
|
|
|
|
return has_mismatch;
|
|
}
|
|
|
|
/* Find and return the match gcov_info object for INFO from ARRAY.
|
|
SIZE is the length of ARRAY.
|
|
Return NULL if there is no match. */
|
|
|
|
static struct gcov_info *
|
|
find_match_gcov_info (struct gcov_info **array, int size,
|
|
struct gcov_info *info)
|
|
{
|
|
struct gcov_info *gi_ptr;
|
|
struct gcov_info *ret = NULL;
|
|
int i;
|
|
|
|
for (i = 0; i < size; i++)
|
|
{
|
|
gi_ptr = array[i];
|
|
if (gi_ptr == 0)
|
|
continue;
|
|
if (!strcmp (gi_ptr->filename, info->filename))
|
|
{
|
|
ret = gi_ptr;
|
|
array[i] = 0;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (ret && ret->n_functions != info->n_functions)
|
|
{
|
|
fnotice (stderr, "mismatched profiles in %s (%d functions"
|
|
" vs %d functions)\n",
|
|
ret->filename,
|
|
ret->n_functions,
|
|
info->n_functions);
|
|
ret = NULL;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
/* Merge the list of gcov_info objects from SRC_PROFILE to TGT_PROFILE.
|
|
Return the list of merged gcov_info objects. Return NULL if the list is
|
|
empty. */
|
|
|
|
struct gcov_info *
|
|
gcov_profile_merge (struct gcov_info *tgt_profile, struct gcov_info *src_profile,
|
|
int w1, int w2)
|
|
{
|
|
struct gcov_info *gi_ptr;
|
|
struct gcov_info **tgt_infos;
|
|
struct gcov_info **tgt_tail;
|
|
struct gcov_info **in_src_not_tgt;
|
|
unsigned tgt_cnt = 0, src_cnt = 0;
|
|
unsigned unmatch_info_cnt = 0;
|
|
unsigned int i;
|
|
|
|
for (gi_ptr = tgt_profile; gi_ptr; gi_ptr = gi_ptr->next)
|
|
tgt_cnt++;
|
|
for (gi_ptr = src_profile; gi_ptr; gi_ptr = gi_ptr->next)
|
|
src_cnt++;
|
|
tgt_infos = (struct gcov_info **) xmalloc (sizeof (struct gcov_info *)
|
|
* tgt_cnt);
|
|
gcc_assert (tgt_infos);
|
|
in_src_not_tgt = (struct gcov_info **) xmalloc (sizeof (struct gcov_info *)
|
|
* src_cnt);
|
|
gcc_assert (in_src_not_tgt);
|
|
|
|
for (gi_ptr = tgt_profile, i = 0; gi_ptr; gi_ptr = gi_ptr->next, i++)
|
|
tgt_infos[i] = gi_ptr;
|
|
|
|
if (tgt_cnt)
|
|
tgt_tail = &tgt_infos[tgt_cnt - 1]->next;
|
|
else
|
|
tgt_tail = &tgt_profile;
|
|
|
|
/* First pass on tgt_profile, we multiply w1 to all counters. */
|
|
if (w1 > 1)
|
|
{
|
|
for (i = 0; i < tgt_cnt; i++)
|
|
gcov_merge (tgt_infos[i], tgt_infos[i], w1-1);
|
|
}
|
|
|
|
/* Second pass, add src_profile to the tgt_profile. */
|
|
for (gi_ptr = src_profile; gi_ptr; gi_ptr = gi_ptr->next)
|
|
{
|
|
struct gcov_info *gi_ptr1;
|
|
|
|
gi_ptr1 = find_match_gcov_info (tgt_infos, tgt_cnt, gi_ptr);
|
|
if (gi_ptr1 == NULL)
|
|
{
|
|
in_src_not_tgt[unmatch_info_cnt++] = gi_ptr;
|
|
continue;
|
|
}
|
|
gcov_merge (gi_ptr1, gi_ptr, w2);
|
|
}
|
|
|
|
/* For modules in src but not in tgt. We adjust the counter and append. */
|
|
for (i = 0; i < unmatch_info_cnt; i++)
|
|
{
|
|
gi_ptr = in_src_not_tgt[i];
|
|
gcov_merge (gi_ptr, gi_ptr, w2 - 1);
|
|
gi_ptr->next = NULL;
|
|
*tgt_tail = gi_ptr;
|
|
tgt_tail = &gi_ptr->next;
|
|
}
|
|
|
|
free (in_src_not_tgt);
|
|
free (tgt_infos);
|
|
|
|
return tgt_profile;
|
|
}
|
|
|
|
/* Deserialize gcov_info objects and associated filenames from the file
|
|
specified by FILENAME to create a profile list. When FILENAME is NULL, read
|
|
from stdin. Return the profile list. */
|
|
|
|
struct gcov_info *
|
|
deserialize_profiles (const char *filename)
|
|
{
|
|
read_profile_dir_init ();
|
|
|
|
while (true)
|
|
{
|
|
unsigned version;
|
|
const char *filename_of_info;
|
|
struct gcov_info *obj_info;
|
|
|
|
if (!gcov_magic (gcov_read_unsigned (), GCOV_FILENAME_MAGIC))
|
|
{
|
|
if (gcov_is_error () != 2)
|
|
fnotice (stderr, "%s:not a gcfn stream\n", filename);
|
|
break;
|
|
}
|
|
|
|
version = gcov_read_unsigned ();
|
|
if (version != GCOV_VERSION)
|
|
{
|
|
fnotice (stderr, "%s:incorrect gcov version %d vs %d \n",
|
|
filename, version, GCOV_VERSION);
|
|
break;
|
|
}
|
|
|
|
filename_of_info = gcov_read_string ();
|
|
if (!filename_of_info)
|
|
{
|
|
fnotice (stderr, "%s:no filename in gcfn stream\n",
|
|
filename);
|
|
break;
|
|
}
|
|
|
|
obj_info = read_gcda_file (filename);
|
|
if (!obj_info)
|
|
break;
|
|
|
|
obj_info->filename = filename_of_info;
|
|
}
|
|
|
|
return gcov_info_head;
|
|
}
|
|
|
|
/* For each profile of the list specified by SRC_PROFILE, read the GCDA file of
|
|
the profile. If a GCDA file exists, add the profile to a list. Return the
|
|
profile list. */
|
|
|
|
struct gcov_info *
|
|
get_target_profiles_for_merge (struct gcov_info *src_profile)
|
|
{
|
|
struct gcov_info *gi_ptr;
|
|
|
|
read_profile_dir_init ();
|
|
|
|
for (gi_ptr = src_profile; gi_ptr; gi_ptr = gi_ptr->next)
|
|
if (gcov_open (gi_ptr->filename, 1))
|
|
{
|
|
(void)read_gcda_file (gi_ptr->filename);
|
|
gcov_close ();
|
|
}
|
|
|
|
return gcov_info_head;
|
|
}
|
|
|
|
/* Deserialize gcov_info objects and associated filenames from the file
|
|
specified by FILENAME to create a source profile list. When FILENAME is
|
|
NULL, read from stdin. Use the filenames of the source profile list to get
|
|
a target profile list. Merge the source profile list into the target
|
|
profile list using weights W1 and W2. Return the list of merged gcov_info
|
|
objects. Return NULL if the list is empty. */
|
|
|
|
struct gcov_info *
|
|
gcov_profile_merge_stream (const char *filename, int w1, int w2)
|
|
{
|
|
struct gcov_info *tgt_profile;
|
|
struct gcov_info *src_profile;
|
|
|
|
if (!gcov_open (filename, 1))
|
|
{
|
|
fnotice (stderr, "%s:cannot open:%s\n", filename, xstrerror (errno));
|
|
return NULL;
|
|
}
|
|
|
|
src_profile = deserialize_profiles (filename ? filename : "<stdin>");
|
|
gcov_close ();
|
|
tgt_profile = get_target_profiles_for_merge (src_profile);
|
|
|
|
return gcov_profile_merge (tgt_profile, src_profile, w1, w2);
|
|
}
|
|
|
|
typedef gcov_type (*counter_op_fn) (gcov_type, void*, void*);
|
|
|
|
/* Performing FN upon arc counters. */
|
|
|
|
static void
|
|
__gcov_add_counter_op (gcov_type *counters, unsigned n_counters,
|
|
counter_op_fn fn, void *data1, void *data2)
|
|
{
|
|
for (; n_counters; counters++, n_counters--)
|
|
{
|
|
gcov_type val = *counters;
|
|
*counters = fn(val, data1, data2);
|
|
}
|
|
}
|
|
|
|
/* Performing FN upon ior counters. */
|
|
|
|
static void
|
|
__gcov_ior_counter_op (gcov_type *counters ATTRIBUTE_UNUSED,
|
|
unsigned n_counters ATTRIBUTE_UNUSED,
|
|
counter_op_fn fn ATTRIBUTE_UNUSED,
|
|
void *data1 ATTRIBUTE_UNUSED,
|
|
void *data2 ATTRIBUTE_UNUSED)
|
|
{
|
|
/* Do nothing. */
|
|
}
|
|
|
|
/* Performing FN upon time-profile counters. */
|
|
|
|
static void
|
|
__gcov_time_profile_counter_op (gcov_type *counters ATTRIBUTE_UNUSED,
|
|
unsigned n_counters ATTRIBUTE_UNUSED,
|
|
counter_op_fn fn ATTRIBUTE_UNUSED,
|
|
void *data1 ATTRIBUTE_UNUSED,
|
|
void *data2 ATTRIBUTE_UNUSED)
|
|
{
|
|
/* Do nothing. */
|
|
}
|
|
|
|
/* Performing FN upon TOP N counters. */
|
|
|
|
static void
|
|
__gcov_topn_counter_op (gcov_type *counters, unsigned n_counters,
|
|
counter_op_fn fn, void *data1, void *data2)
|
|
{
|
|
unsigned i, n_measures;
|
|
|
|
gcc_assert (!(n_counters % 3));
|
|
n_measures = n_counters / 3;
|
|
for (i = 0; i < n_measures; i++, counters += 3)
|
|
{
|
|
counters[1] = fn (counters[1], data1, data2);
|
|
counters[2] = fn (counters[2], data1, data2);
|
|
}
|
|
}
|
|
|
|
/* Scaling the counter value V by multiplying *(float*) DATA1. */
|
|
|
|
static gcov_type
|
|
fp_scale (gcov_type v, void *data1, void *data2 ATTRIBUTE_UNUSED)
|
|
{
|
|
float f = *(float *) data1;
|
|
return (gcov_type) (v * f);
|
|
}
|
|
|
|
/* Scaling the counter value V by multiplying DATA2/DATA1. */
|
|
|
|
static gcov_type
|
|
int_scale (gcov_type v, void *data1, void *data2)
|
|
{
|
|
int n = *(int *) data1;
|
|
int d = *(int *) data2;
|
|
return (gcov_type) ( RDIV (v,d) * n);
|
|
}
|
|
|
|
/* Type of function used to process counters. */
|
|
typedef void (*gcov_counter_fn) (gcov_type *, gcov_unsigned_t,
|
|
counter_op_fn, void *, void *);
|
|
|
|
/* Function array to process profile counters. */
|
|
#define DEF_GCOV_COUNTER(COUNTER, NAME, FN_TYPE) \
|
|
__gcov ## FN_TYPE ## _counter_op,
|
|
static gcov_counter_fn ctr_functions[GCOV_COUNTERS] = {
|
|
#include "gcov-counter.def"
|
|
};
|
|
#undef DEF_GCOV_COUNTER
|
|
|
|
/* Driver for scaling profile counters. */
|
|
|
|
int
|
|
gcov_profile_scale (struct gcov_info *profile, float scale_factor, int n, int d)
|
|
{
|
|
struct gcov_info *gi_ptr;
|
|
unsigned f_ix;
|
|
|
|
if (verbose)
|
|
fnotice (stdout, "scale_factor is %f or %d/%d\n", scale_factor, n, d);
|
|
|
|
/* Scaling the counters. */
|
|
for (gi_ptr = profile; gi_ptr; gi_ptr = gi_ptr->next)
|
|
for (f_ix = 0; f_ix < gi_ptr->n_functions; f_ix++)
|
|
{
|
|
unsigned t_ix;
|
|
const struct gcov_fn_info *gfi_ptr = gi_ptr->functions[f_ix];
|
|
const struct gcov_ctr_info *ci_ptr;
|
|
|
|
if (!gfi_ptr || gfi_ptr->key != gi_ptr)
|
|
continue;
|
|
|
|
ci_ptr = gfi_ptr->ctrs;
|
|
for (t_ix = 0; t_ix != GCOV_COUNTERS; t_ix++)
|
|
{
|
|
gcov_merge_fn merge = gi_ptr->merge[t_ix];
|
|
|
|
if (!merge)
|
|
continue;
|
|
if (d == 0)
|
|
(*ctr_functions[t_ix]) (ci_ptr->values, ci_ptr->num,
|
|
fp_scale, &scale_factor, NULL);
|
|
else
|
|
(*ctr_functions[t_ix]) (ci_ptr->values, ci_ptr->num,
|
|
int_scale, &n, &d);
|
|
ci_ptr++;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* Driver to normalize profile counters. */
|
|
|
|
int
|
|
gcov_profile_normalize (struct gcov_info *profile, gcov_type max_val)
|
|
{
|
|
struct gcov_info *gi_ptr;
|
|
gcov_type curr_max_val = 0;
|
|
unsigned f_ix;
|
|
unsigned int i;
|
|
float scale_factor;
|
|
|
|
/* Find the largest count value. */
|
|
for (gi_ptr = profile; gi_ptr; gi_ptr = gi_ptr->next)
|
|
for (f_ix = 0; f_ix < gi_ptr->n_functions; f_ix++)
|
|
{
|
|
unsigned t_ix;
|
|
const struct gcov_fn_info *gfi_ptr = gi_ptr->functions[f_ix];
|
|
const struct gcov_ctr_info *ci_ptr;
|
|
|
|
if (!gfi_ptr || gfi_ptr->key != gi_ptr)
|
|
continue;
|
|
|
|
ci_ptr = gfi_ptr->ctrs;
|
|
for (t_ix = 0; t_ix < 1; t_ix++)
|
|
{
|
|
for (i = 0; i < ci_ptr->num; i++)
|
|
if (ci_ptr->values[i] > curr_max_val)
|
|
curr_max_val = ci_ptr->values[i];
|
|
ci_ptr++;
|
|
}
|
|
}
|
|
|
|
scale_factor = (float)max_val / curr_max_val;
|
|
if (verbose)
|
|
fnotice (stdout, "max_val is %" PRId64 "\n", curr_max_val);
|
|
|
|
return gcov_profile_scale (profile, scale_factor, 0, 0);
|
|
}
|
|
|
|
/* The following variables are defined in gcc/gcov-tool.c. */
|
|
extern int overlap_func_level;
|
|
extern int overlap_obj_level;
|
|
extern int overlap_hot_only;
|
|
extern int overlap_use_fullname;
|
|
extern double overlap_hot_threshold;
|
|
|
|
/* Compute the overlap score of two values. The score is defined as:
|
|
min (V1/SUM_1, V2/SUM_2) */
|
|
|
|
static double
|
|
calculate_2_entries (const unsigned long v1, const unsigned long v2,
|
|
const double sum_1, const double sum_2)
|
|
{
|
|
double val1 = (sum_1 == 0.0 ? 0.0 : v1/sum_1);
|
|
double val2 = (sum_2 == 0.0 ? 0.0 : v2/sum_2);
|
|
|
|
if (val2 < val1)
|
|
val1 = val2;
|
|
|
|
return val1;
|
|
}
|
|
|
|
/* Compute the overlap score between GCOV_INFO1 and GCOV_INFO2.
|
|
This function also updates cumulative score CUM_1_RESULT and
|
|
CUM_2_RESULT. */
|
|
|
|
static double
|
|
compute_one_gcov (const struct gcov_info *gcov_info1,
|
|
const struct gcov_info *gcov_info2,
|
|
const double sum_1, const double sum_2,
|
|
double *cum_1_result, double *cum_2_result)
|
|
{
|
|
unsigned f_ix;
|
|
double ret = 0;
|
|
double cum_1 = 0, cum_2 = 0;
|
|
const struct gcov_info *gcov_info = 0;
|
|
double *cum_p;
|
|
double sum;
|
|
|
|
gcc_assert (gcov_info1 || gcov_info2);
|
|
if (!gcov_info1)
|
|
{
|
|
gcov_info = gcov_info2;
|
|
cum_p = cum_2_result;
|
|
sum = sum_2;
|
|
*cum_1_result = 0;
|
|
} else
|
|
if (!gcov_info2)
|
|
{
|
|
gcov_info = gcov_info1;
|
|
cum_p = cum_1_result;
|
|
sum = sum_1;
|
|
*cum_2_result = 0;
|
|
}
|
|
|
|
if (gcov_info)
|
|
{
|
|
for (f_ix = 0; f_ix < gcov_info->n_functions; f_ix++)
|
|
{
|
|
const struct gcov_fn_info *gfi_ptr = gcov_info->functions[f_ix];
|
|
if (!gfi_ptr || gfi_ptr->key != gcov_info)
|
|
continue;
|
|
const struct gcov_ctr_info *ci_ptr = gfi_ptr->ctrs;
|
|
unsigned c_num;
|
|
for (c_num = 0; c_num < ci_ptr->num; c_num++)
|
|
cum_1 += ci_ptr->values[c_num] / sum;
|
|
}
|
|
*cum_p = cum_1;
|
|
return 0.0;
|
|
}
|
|
|
|
for (f_ix = 0; f_ix < gcov_info1->n_functions; f_ix++)
|
|
{
|
|
double func_cum_1 = 0.0;
|
|
double func_cum_2 = 0.0;
|
|
double func_val = 0.0;
|
|
int nonzero = 0;
|
|
int hot = 0;
|
|
const struct gcov_fn_info *gfi_ptr1 = gcov_info1->functions[f_ix];
|
|
const struct gcov_fn_info *gfi_ptr2 = gcov_info2->functions[f_ix];
|
|
|
|
if (!gfi_ptr1 || gfi_ptr1->key != gcov_info1)
|
|
continue;
|
|
if (!gfi_ptr2 || gfi_ptr2->key != gcov_info2)
|
|
continue;
|
|
|
|
const struct gcov_ctr_info *ci_ptr1 = gfi_ptr1->ctrs;
|
|
const struct gcov_ctr_info *ci_ptr2 = gfi_ptr2->ctrs;
|
|
unsigned c_num;
|
|
for (c_num = 0; c_num < ci_ptr1->num; c_num++)
|
|
{
|
|
if (ci_ptr1->values[c_num] | ci_ptr2->values[c_num])
|
|
{
|
|
func_val += calculate_2_entries (ci_ptr1->values[c_num],
|
|
ci_ptr2->values[c_num],
|
|
sum_1, sum_2);
|
|
|
|
func_cum_1 += ci_ptr1->values[c_num] / sum_1;
|
|
func_cum_2 += ci_ptr2->values[c_num] / sum_2;
|
|
nonzero = 1;
|
|
if (ci_ptr1->values[c_num] / sum_1 >= overlap_hot_threshold
|
|
|| ci_ptr2->values[c_num] / sum_2 >= overlap_hot_threshold)
|
|
hot = 1;
|
|
}
|
|
}
|
|
|
|
ret += func_val;
|
|
cum_1 += func_cum_1;
|
|
cum_2 += func_cum_2;
|
|
if (overlap_func_level && nonzero && (!overlap_hot_only || hot))
|
|
{
|
|
printf(" \tfunc_id=%10d \toverlap =%6.5f%% (%5.5f%% %5.5f%%)\n",
|
|
gfi_ptr1->ident, func_val*100, func_cum_1*100, func_cum_2*100);
|
|
}
|
|
}
|
|
*cum_1_result = cum_1;
|
|
*cum_2_result = cum_2;
|
|
return ret;
|
|
}
|
|
|
|
/* Test if all counter values in this GCOV_INFO are cold.
|
|
"Cold" is defined as the counter value being less than
|
|
or equal to THRESHOLD. */
|
|
|
|
static bool
|
|
gcov_info_count_all_cold (const struct gcov_info *gcov_info,
|
|
gcov_type threshold)
|
|
{
|
|
unsigned f_ix;
|
|
|
|
for (f_ix = 0; f_ix < gcov_info->n_functions; f_ix++)
|
|
{
|
|
const struct gcov_fn_info *gfi_ptr = gcov_info->functions[f_ix];
|
|
|
|
if (!gfi_ptr || gfi_ptr->key != gcov_info)
|
|
continue;
|
|
const struct gcov_ctr_info *ci_ptr = gfi_ptr->ctrs;
|
|
for (unsigned c_num = 0; c_num < ci_ptr->num; c_num++)
|
|
if (ci_ptr->values[c_num] > threshold)
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/* Test if all counter values in this GCOV_INFO are 0. */
|
|
|
|
static bool
|
|
gcov_info_count_all_zero (const struct gcov_info *gcov_info)
|
|
{
|
|
return gcov_info_count_all_cold (gcov_info, 0);
|
|
}
|
|
|
|
/* A pair of matched GCOV_INFO.
|
|
The flag is a bitvector:
|
|
b0: obj1's all counts are 0;
|
|
b1: obj1's all counts are cold (but no 0);
|
|
b2: obj1 is hot;
|
|
b3: no obj1 to match obj2;
|
|
b4: obj2's all counts are 0;
|
|
b5: obj2's all counts are cold (but no 0);
|
|
b6: obj2 is hot;
|
|
b7: no obj2 to match obj1;
|
|
*/
|
|
struct overlap_t {
|
|
const struct gcov_info *obj1;
|
|
const struct gcov_info *obj2;
|
|
char flag;
|
|
};
|
|
|
|
#define FLAG_BOTH_ZERO(flag) ((flag & 0x1) && (flag & 0x10))
|
|
#define FLAG_BOTH_COLD(flag) ((flag & 0x2) && (flag & 0x20))
|
|
#define FLAG_ONE_HOT(flag) ((flag & 0x4) || (flag & 0x40))
|
|
|
|
/* Cumlative overlap dscore for profile1 and profile2. */
|
|
static double overlap_sum_1, overlap_sum_2;
|
|
|
|
/* The number of gcda files in the profiles. */
|
|
static unsigned gcda_files[2];
|
|
|
|
/* The number of unique gcda files in the profiles
|
|
(not existing in the other profile). */
|
|
static unsigned unique_gcda_files[2];
|
|
|
|
/* The number of gcda files that all counter values are 0. */
|
|
static unsigned zero_gcda_files[2];
|
|
|
|
/* The number of gcda files that all counter values are cold (but not 0). */
|
|
static unsigned cold_gcda_files[2];
|
|
|
|
/* The number of gcda files that includes hot counter values. */
|
|
static unsigned hot_gcda_files[2];
|
|
|
|
/* The number of gcda files with hot count value in either profiles. */
|
|
static unsigned both_hot_cnt;
|
|
|
|
/* The number of gcda files with all counts cold (but not 0) in
|
|
both profiles. */
|
|
static unsigned both_cold_cnt;
|
|
|
|
/* The number of gcda files with all counts 0 in both profiles. */
|
|
static unsigned both_zero_cnt;
|
|
|
|
/* Extract the basename of the filename NAME. */
|
|
|
|
static char *
|
|
extract_file_basename (const char *name)
|
|
{
|
|
char *str;
|
|
int len = 0;
|
|
char *path = xstrdup (name);
|
|
char sep_str[2];
|
|
|
|
sep_str[0] = DIR_SEPARATOR;
|
|
sep_str[1] = 0;
|
|
str = strstr(path, sep_str);
|
|
do{
|
|
len = strlen(str) + 1;
|
|
path = &path[strlen(path) - len + 2];
|
|
str = strstr(path, sep_str);
|
|
} while(str);
|
|
|
|
return path;
|
|
}
|
|
|
|
/* Utility function to get the filename. */
|
|
|
|
static const char *
|
|
get_file_basename (const char *name)
|
|
{
|
|
if (overlap_use_fullname)
|
|
return name;
|
|
return extract_file_basename (name);
|
|
}
|
|
|
|
/* A utility function to set the flag for the gcda files. */
|
|
|
|
static void
|
|
set_flag (struct overlap_t *e)
|
|
{
|
|
char flag = 0;
|
|
|
|
if (!e->obj1)
|
|
{
|
|
unique_gcda_files[1]++;
|
|
flag = 0x8;
|
|
}
|
|
else
|
|
{
|
|
gcda_files[0]++;
|
|
if (gcov_info_count_all_zero (e->obj1))
|
|
{
|
|
zero_gcda_files[0]++;
|
|
flag = 0x1;
|
|
}
|
|
else
|
|
if (gcov_info_count_all_cold (e->obj1, overlap_sum_1
|
|
* overlap_hot_threshold))
|
|
{
|
|
cold_gcda_files[0]++;
|
|
flag = 0x2;
|
|
}
|
|
else
|
|
{
|
|
hot_gcda_files[0]++;
|
|
flag = 0x4;
|
|
}
|
|
}
|
|
|
|
if (!e->obj2)
|
|
{
|
|
unique_gcda_files[0]++;
|
|
flag |= (0x8 << 4);
|
|
}
|
|
else
|
|
{
|
|
gcda_files[1]++;
|
|
if (gcov_info_count_all_zero (e->obj2))
|
|
{
|
|
zero_gcda_files[1]++;
|
|
flag |= (0x1 << 4);
|
|
}
|
|
else
|
|
if (gcov_info_count_all_cold (e->obj2, overlap_sum_2
|
|
* overlap_hot_threshold))
|
|
{
|
|
cold_gcda_files[1]++;
|
|
flag |= (0x2 << 4);
|
|
}
|
|
else
|
|
{
|
|
hot_gcda_files[1]++;
|
|
flag |= (0x4 << 4);
|
|
}
|
|
}
|
|
|
|
gcc_assert (flag);
|
|
e->flag = flag;
|
|
}
|
|
|
|
/* Test if INFO1 and INFO2 are from the matched source file.
|
|
Return 1 if they match; return 0 otherwise. */
|
|
|
|
static int
|
|
matched_gcov_info (const struct gcov_info *info1, const struct gcov_info *info2)
|
|
{
|
|
/* For FDO, we have to match the name. This can be expensive.
|
|
Maybe we should use hash here. */
|
|
if (strcmp (info1->filename, info2->filename))
|
|
return 0;
|
|
|
|
if (info1->n_functions != info2->n_functions)
|
|
{
|
|
fnotice (stderr, "mismatched profiles in %s (%d functions"
|
|
" vs %d functions)\n",
|
|
info1->filename,
|
|
info1->n_functions,
|
|
info2->n_functions);
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
/* Compute the overlap score of two profiles with the head of GCOV_LIST1 and
|
|
GCOV_LIST1. Return a number ranging from [0.0, 1.0], with 0.0 meaning no
|
|
match and 1.0 meaning a perfect match. */
|
|
|
|
static double
|
|
calculate_overlap (struct gcov_info *gcov_list1,
|
|
struct gcov_info *gcov_list2)
|
|
{
|
|
unsigned list1_cnt = 0, list2_cnt= 0, all_cnt;
|
|
unsigned int i, j;
|
|
const struct gcov_info *gi_ptr;
|
|
struct overlap_t *all_infos;
|
|
|
|
for (gi_ptr = gcov_list1; gi_ptr; gi_ptr = gi_ptr->next)
|
|
list1_cnt++;
|
|
for (gi_ptr = gcov_list2; gi_ptr; gi_ptr = gi_ptr->next)
|
|
list2_cnt++;
|
|
all_cnt = list1_cnt + list2_cnt;
|
|
all_infos = (struct overlap_t *) xmalloc (sizeof (struct overlap_t)
|
|
* all_cnt * 2);
|
|
gcc_assert (all_infos);
|
|
|
|
i = 0;
|
|
for (gi_ptr = gcov_list1; gi_ptr; gi_ptr = gi_ptr->next, i++)
|
|
{
|
|
all_infos[i].obj1 = gi_ptr;
|
|
all_infos[i].obj2 = 0;
|
|
}
|
|
|
|
for (gi_ptr = gcov_list2; gi_ptr; gi_ptr = gi_ptr->next, i++)
|
|
{
|
|
all_infos[i].obj1 = 0;
|
|
all_infos[i].obj2 = gi_ptr;
|
|
}
|
|
|
|
for (i = list1_cnt; i < all_cnt; i++)
|
|
{
|
|
if (all_infos[i].obj2 == 0)
|
|
continue;
|
|
for (j = 0; j < list1_cnt; j++)
|
|
{
|
|
if (all_infos[j].obj2 != 0)
|
|
continue;
|
|
if (matched_gcov_info (all_infos[i].obj2, all_infos[j].obj1))
|
|
{
|
|
all_infos[j].obj2 = all_infos[i].obj2;
|
|
all_infos[i].obj2 = 0;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
for (i = 0; i < all_cnt; i++)
|
|
if (all_infos[i].obj1 || all_infos[i].obj2)
|
|
{
|
|
set_flag (all_infos + i);
|
|
if (FLAG_ONE_HOT (all_infos[i].flag))
|
|
both_hot_cnt++;
|
|
if (FLAG_BOTH_COLD(all_infos[i].flag))
|
|
both_cold_cnt++;
|
|
if (FLAG_BOTH_ZERO(all_infos[i].flag))
|
|
both_zero_cnt++;
|
|
}
|
|
|
|
double prg_val = 0;
|
|
double sum_val = 0;
|
|
double sum_cum_1 = 0;
|
|
double sum_cum_2 = 0;
|
|
|
|
for (i = 0; i < all_cnt; i++)
|
|
{
|
|
double val;
|
|
double cum_1, cum_2;
|
|
const char *filename;
|
|
|
|
if (all_infos[i].obj1 == 0 && all_infos[i].obj2 == 0)
|
|
continue;
|
|
if (FLAG_BOTH_ZERO (all_infos[i].flag))
|
|
continue;
|
|
|
|
if (all_infos[i].obj1)
|
|
filename = get_file_basename (all_infos[i].obj1->filename);
|
|
else
|
|
filename = get_file_basename (all_infos[i].obj2->filename);
|
|
|
|
if (overlap_func_level)
|
|
printf("\n processing %36s:\n", filename);
|
|
|
|
val = compute_one_gcov (all_infos[i].obj1, all_infos[i].obj2,
|
|
overlap_sum_1, overlap_sum_2, &cum_1, &cum_2);
|
|
|
|
if (overlap_obj_level && (!overlap_hot_only || FLAG_ONE_HOT (all_infos[i].flag)))
|
|
{
|
|
printf(" obj=%36s overlap = %6.2f%% (%5.2f%% %5.2f%%)\n",
|
|
filename, val*100, cum_1*100, cum_2*100);
|
|
sum_val += val;
|
|
sum_cum_1 += cum_1;
|
|
sum_cum_2 += cum_2;
|
|
}
|
|
|
|
prg_val += val;
|
|
|
|
}
|
|
|
|
free (all_infos);
|
|
|
|
if (overlap_obj_level)
|
|
printf(" SUM:%36s overlap = %6.2f%% (%5.2f%% %5.2f%%)\n",
|
|
"", sum_val*100, sum_cum_1*100, sum_cum_2*100);
|
|
|
|
printf (" Statistics:\n"
|
|
" profile1_# profile2_# overlap_#\n");
|
|
printf (" gcda files: %12u\t%12u\t%12u\n", gcda_files[0], gcda_files[1],
|
|
gcda_files[0]-unique_gcda_files[0]);
|
|
printf (" unique files: %12u\t%12u\n", unique_gcda_files[0],
|
|
unique_gcda_files[1]);
|
|
printf (" hot files: %12u\t%12u\t%12u\n", hot_gcda_files[0],
|
|
hot_gcda_files[1], both_hot_cnt);
|
|
printf (" cold files: %12u\t%12u\t%12u\n", cold_gcda_files[0],
|
|
cold_gcda_files[1], both_cold_cnt);
|
|
printf (" zero files: %12u\t%12u\t%12u\n", zero_gcda_files[0],
|
|
zero_gcda_files[1], both_zero_cnt);
|
|
|
|
return prg_val;
|
|
}
|
|
|
|
/* Compute the overlap score of two lists of gcov_info objects PROFILE1 and
|
|
PROFILE2.
|
|
Return 0 on success: without mismatch. Reutrn 1 on error. */
|
|
|
|
int
|
|
gcov_profile_overlap (struct gcov_info *profile1, struct gcov_info *profile2)
|
|
{
|
|
double result;
|
|
|
|
result = calculate_overlap (profile1, profile2);
|
|
|
|
if (result > 0)
|
|
{
|
|
printf("\nProgram level overlap result is %3.2f%%\n\n", result*100);
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|