This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 1d54992fcf4 aarch64: Fix PCH for sve builtins [PR123457] new b34dad6d185 Add pub-sub.{h,cc} new 4a2e1c31159 Add publish/subscribe topics and channel: pass_events new e20eee3897a diagnostics: add optional CFG dumps to SARIF/HTML output sinks new f68343c2543 analyzer: replace PLUGIN_ANALYZER_INIT with a pub/sub channel new d36257a190d analyzer: port translation_unit_callbacks to pub/sub new bc668cf6c94 analyzer: port pop_frame_callbacks to pub/sub new e153237a3f9 Update Copyright for gen-evolution.awk and gen-cxxapi-file.py
The 7 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: contrib/update-copyright.py | 2 - gcc/Makefile.in | 5 + gcc/analyzer/analyzer-language.cc | 29 +- gcc/analyzer/analyzer-language.h | 5 - gcc/analyzer/common.h | 72 +++- gcc/analyzer/engine.cc | 36 +- gcc/analyzer/region-model.cc | 12 +- gcc/analyzer/region-model.h | 22 -- gcc/cfghooks.cc | 30 ++ gcc/cfghooks.h | 10 + gcc/cfgrtl.cc | 2 + gcc/channels.h | 45 +++ gcc/config/loongarch/genopts/gen-evolution.awk | 14 +- gcc/context.cc | 7 +- gcc/context.h | 12 + gcc/cp/gen-cxxapi-file.py | 6 +- gcc/custom-sarif-properties/cfg.cc | 69 ++++ gcc/custom-sarif-properties/cfg.h | 64 ++++ gcc/diagnostics/digraphs-to-dot-from-cfg.cc | 323 +++++++++++++++++ gcc/diagnostics/digraphs-to-dot.cc | 202 +++++++++++ gcc/diagnostics/digraphs-to-dot.h | 84 +++++ gcc/diagnostics/digraphs.cc | 137 +------- gcc/diagnostics/digraphs.h | 6 + gcc/diagnostics/html-sink.cc | 30 ++ gcc/diagnostics/sarif-sink.cc | 40 +++ gcc/diagnostics/sink.h | 5 + gcc/diagnostics/text-sink.h | 7 + gcc/doc/invoke.texi | 23 +- gcc/doc/plugins.texi | 4 - gcc/gimple-pretty-print.cc | 84 +++++ gcc/gimple-pretty-print.h | 7 + gcc/graphviz.cc | 52 +++ gcc/graphviz.h | 3 + gcc/libsarifreplay.cc | 5 +- gcc/opts-common.cc | 1 + gcc/opts-diagnostic.cc | 93 ++++- gcc/opts-diagnostic.h | 14 + gcc/opts.cc | 1 + gcc/passes.cc | 12 + gcc/plugin.cc | 2 - gcc/plugin.def | 4 - gcc/print-rtl.cc | 25 ++ gcc/print-rtl.h | 7 + gcc/pub-sub.cc | 138 ++++++++ gcc/pub-sub.h | 68 ++++ gcc/selftest-run-tests.cc | 1 + gcc/selftest.h | 1 + gcc/testsuite/gcc.dg/diagnostic-cfgs-html.py | 21 ++ gcc/testsuite/gcc.dg/diagnostic-cfgs-sarif.py | 84 +++++ gcc/testsuite/gcc.dg/diagnostic-cfgs.c | 18 + .../gcc.dg/plugin/analyzer_cpython_plugin.cc | 73 ++-- gcc/testsuite/gcc.dg/plugin/analyzer_gil_plugin.cc | 30 +- .../gcc.dg/plugin/analyzer_kernel_plugin.cc | 43 ++- .../gcc.dg/plugin/analyzer_known_fns_plugin.cc | 37 +- gcc/testsuite/gcc.dg/plugin/plugin.exp | 1 + .../gcc.dg/plugin/progress_notifications_plugin.cc | 51 +++ gcc/topics/pass-events.h | 59 ++++ gcc/tree-cfg.cc | 1 + gcc/tree-diagnostic-cfg.cc | 390 +++++++++++++++++++++ ...rlifier.h => tree-diagnostic-sink-extensions.h} | 19 +- gcc/tree-diagnostic.cc | 5 + 61 files changed, 2303 insertions(+), 350 deletions(-) create mode 100644 gcc/channels.h create mode 100644 gcc/custom-sarif-properties/cfg.cc create mode 100644 gcc/custom-sarif-properties/cfg.h create mode 100644 gcc/diagnostics/digraphs-to-dot-from-cfg.cc create mode 100644 gcc/diagnostics/digraphs-to-dot.cc create mode 100644 gcc/diagnostics/digraphs-to-dot.h create mode 100644 gcc/pub-sub.cc create mode 100644 gcc/pub-sub.h create mode 100644 gcc/testsuite/gcc.dg/diagnostic-cfgs-html.py create mode 100644 gcc/testsuite/gcc.dg/diagnostic-cfgs-sarif.py create mode 100644 gcc/testsuite/gcc.dg/diagnostic-cfgs.c create mode 100644 gcc/testsuite/gcc.dg/plugin/progress_notifications_plugin.cc create mode 100644 gcc/topics/pass-events.h create mode 100644 gcc/tree-diagnostic-cfg.cc copy gcc/{pretty-print-urlifier.h => tree-diagnostic-sink-extensions.h} (57%)