1 /* Hierarchical log messages for the analyzer.
2 Copyright (C) 2014-2024 Free Software Foundation, Inc.
3 Contributed by David Malcolm <dmalcolm@redhat.com>.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
12 GCC is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
24 #include "toplev.h" /* for print_version */
25 #include "pretty-print.h" /* for print_version */
26 #include "diagnostic.h"
27 #include "tree-diagnostic.h"
29 #include "analyzer/analyzer-logging.h"
34 #pragma GCC diagnostic ignored "-Wformat-diag"
39 /* Implementation of class logger. */
41 /* ctor for logger. */
43 logger::logger (FILE *f_out
,
46 const pretty_printer
&reference_pp
) :
50 m_log_refcount_changes (false),
51 m_pp (reference_pp
.clone ())
53 pp_show_color (m_pp
) = 0;
54 pp_buffer (m_pp
)->stream
= f_out
;
56 /* %qE in logs for SSA_NAMEs should show the ssa names, rather than
57 trying to prettify things by showing the underlying var. */
58 pp_format_decoder (m_pp
) = default_tree_printer
;
60 /* Begin the log by writing the GCC version. */
61 print_version (f_out
, "", false);
64 /* The destructor for logger, invoked via
65 the decref method when the refcount hits zero.
66 Note that we do not close the underlying FILE * (m_f_out). */
70 /* This should be the last message emitted. */
71 log ("%s", __PRETTY_FUNCTION__
);
72 gcc_assert (m_refcount
== 0);
76 /* Increment the reference count of the logger. */
79 logger::incref (const char *reason
)
82 if (m_log_refcount_changes
)
83 log ("%s: reason: %s refcount now %i ",
84 __PRETTY_FUNCTION__
, reason
, m_refcount
);
87 /* Decrement the reference count of the logger,
88 deleting it if nothing is referring to it. */
91 logger::decref (const char *reason
)
93 gcc_assert (m_refcount
> 0);
95 if (m_log_refcount_changes
)
96 log ("%s: reason: %s refcount now %i",
97 __PRETTY_FUNCTION__
, reason
, m_refcount
);
102 /* Write a formatted message to the log, by calling the log_va method. */
105 logger::log (const char *fmt
, ...)
113 /* Write an indented line to the log file.
115 We explicitly flush after each line: if something crashes the process,
116 we want the logfile/stream to contain the most up-to-date hint about the
117 last thing that was happening, without it being hidden in an in-process
121 logger::log_va (const char *fmt
, va_list *ap
)
124 log_va_partial (fmt
, ap
);
129 logger::start_log_line ()
131 for (int i
= 0; i
< m_indent_level
; i
++)
132 fputc (' ', m_f_out
);
136 logger::log_partial (const char *fmt
, ...)
140 log_va_partial (fmt
, &ap
);
145 logger::log_va_partial (const char *fmt
, va_list *ap
)
147 text_info
text (fmt
, ap
, 0);
148 pp_format (m_pp
, &text
);
149 pp_output_formatted_text (m_pp
);
153 logger::end_log_line ()
156 pp_clear_output_area (m_pp
);
157 fprintf (m_f_out
, "\n");
161 /* Record the entry within a particular scope, indenting subsequent
162 log lines accordingly. */
165 logger::enter_scope (const char *scope_name
)
167 log ("entering: %s", scope_name
);
172 logger::enter_scope (const char *scope_name
, const char *fmt
, va_list *ap
)
175 log_partial ("entering: %s: ", scope_name
);
176 log_va_partial (fmt
, ap
);
183 /* Record the exit from a particular scope, restoring the indent level to
184 before the scope was entered. */
187 logger::exit_scope (const char *scope_name
)
192 log ("(mismatching indentation)");
193 log ("exiting: %s", scope_name
);
196 /* Implementation of class log_user. */
198 /* The constructor for log_user. */
200 log_user::log_user (logger
*logger
) : m_logger (logger
)
203 m_logger
->incref("log_user ctor");
206 /* The destructor for log_user. */
208 log_user::~log_user ()
211 m_logger
->decref("log_user dtor");
214 /* Set the logger for a log_user, managing the reference counts
215 of the old and new logger (either of which might be NULL). */
218 log_user::set_logger (logger
*logger
)
221 logger
->incref ("log_user::set_logger");
223 m_logger
->decref ("log_user::set_logger");
229 #endif /* #if ENABLE_ANALYZER */