LCOV - code coverage report
Current view: top level - gcc/analyzer - analyzer-logging.cc (source / functions) Coverage Total Hit
Test: gcc.info Lines: 95.7 % 94 90
Test Date: 2024-04-13 14:00:49 Functions: 100.0 % 16 16
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: - 0 0

             Branch data     Line data    Source code
       1                 :             : /* Hierarchical log messages for the analyzer.
       2                 :             :    Copyright (C) 2014-2024 Free Software Foundation, Inc.
       3                 :             :    Contributed by David Malcolm <dmalcolm@redhat.com>.
       4                 :             : 
       5                 :             : This file is part of GCC.
       6                 :             : 
       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)
      10                 :             : any later version.
      11                 :             : 
      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.
      16                 :             : 
      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/>.  */
      20                 :             : 
      21                 :             : #include "config.h"
      22                 :             : #include "system.h"
      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"
      28                 :             : 
      29                 :             : #include "analyzer/analyzer-logging.h"
      30                 :             : 
      31                 :             : #if ENABLE_ANALYZER
      32                 :             : 
      33                 :             : #if __GNUC__ >= 10
      34                 :             : #pragma GCC diagnostic ignored "-Wformat-diag"
      35                 :             : #endif
      36                 :             : 
      37                 :             : namespace ana {
      38                 :             : 
      39                 :             : /* Implementation of class logger.  */
      40                 :             : 
      41                 :             : /* ctor for logger.  */
      42                 :             : 
      43                 :           4 : logger::logger (FILE *f_out,
      44                 :             :                 int, /* flags */
      45                 :             :                 int /* verbosity */,
      46                 :           4 :                 const pretty_printer &reference_pp) :
      47                 :           4 :   m_refcount (0),
      48                 :           4 :   m_f_out (f_out),
      49                 :           4 :   m_indent_level (0),
      50                 :           4 :   m_log_refcount_changes (false),
      51                 :           4 :   m_pp (reference_pp.clone ())
      52                 :             : {
      53                 :           4 :   pp_show_color (m_pp) = 0;
      54                 :           4 :   pp_buffer (m_pp)->stream = f_out;
      55                 :             : 
      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                 :           4 :   pp_format_decoder (m_pp) = default_tree_printer;
      59                 :             : 
      60                 :             :   /* Begin the log by writing the GCC version.  */
      61                 :           4 :   print_version (f_out, "", false);
      62                 :           4 : }
      63                 :             : 
      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).  */
      67                 :             : 
      68                 :           4 : logger::~logger ()
      69                 :             : {
      70                 :             :   /* This should be the last message emitted.  */
      71                 :           4 :   log ("%s", __PRETTY_FUNCTION__);
      72                 :           4 :   gcc_assert (m_refcount == 0);
      73                 :           4 :   delete m_pp;
      74                 :           4 : }
      75                 :             : 
      76                 :             : /* Increment the reference count of the logger.  */
      77                 :             : 
      78                 :             : void
      79                 :        3573 : logger::incref (const char *reason)
      80                 :             : {
      81                 :        3573 :   m_refcount++;
      82                 :        3573 :   if (m_log_refcount_changes)
      83                 :           0 :     log ("%s: reason: %s refcount now %i ",
      84                 :             :          __PRETTY_FUNCTION__, reason, m_refcount);
      85                 :        3573 : }
      86                 :             : 
      87                 :             : /* Decrement the reference count of the logger,
      88                 :             :    deleting it if nothing is referring to it.  */
      89                 :             : 
      90                 :             : void
      91                 :        3573 : logger::decref (const char *reason)
      92                 :             : {
      93                 :        3573 :   gcc_assert (m_refcount > 0);
      94                 :        3573 :   --m_refcount;
      95                 :        3573 :   if (m_log_refcount_changes)
      96                 :           0 :     log ("%s: reason: %s refcount now %i",
      97                 :             :          __PRETTY_FUNCTION__, reason, m_refcount);
      98                 :        3573 :   if (m_refcount == 0)
      99                 :           4 :     delete this;
     100                 :        3573 : }
     101                 :             : 
     102                 :             : /* Write a formatted message to the log, by calling the log_va method.  */
     103                 :             : 
     104                 :             : void
     105                 :        5847 : logger::log (const char *fmt, ...)
     106                 :             : {
     107                 :        5847 :   va_list ap;
     108                 :        5847 :   va_start (ap, fmt);
     109                 :        5847 :   log_va (fmt, &ap);
     110                 :        5847 :   va_end (ap);
     111                 :        5847 : }
     112                 :             : 
     113                 :             : /* Write an indented line to the log file.
     114                 :             : 
     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
     118                 :             :    buffer.  */
     119                 :             : 
     120                 :             : void
     121                 :        6001 : logger::log_va (const char *fmt, va_list *ap)
     122                 :             : {
     123                 :        6001 :   start_log_line ();
     124                 :        6001 :   log_va_partial (fmt, ap);
     125                 :        6001 :   end_log_line ();
     126                 :        6001 : }
     127                 :             : 
     128                 :             : void
     129                 :       10477 : logger::start_log_line ()
     130                 :             : {
     131                 :       62396 :   for (int i = 0; i < m_indent_level; i++)
     132                 :       51919 :     fputc (' ', m_f_out);
     133                 :       10477 : }
     134                 :             : 
     135                 :             : void
     136                 :         988 : logger::log_partial (const char *fmt, ...)
     137                 :             : {
     138                 :         988 :   va_list ap;
     139                 :         988 :   va_start (ap, fmt);
     140                 :         988 :   log_va_partial (fmt, &ap);
     141                 :         988 :   va_end (ap);
     142                 :         988 : }
     143                 :             : 
     144                 :             : void
     145                 :        7418 : logger::log_va_partial (const char *fmt, va_list *ap)
     146                 :             : {
     147                 :        7418 :   text_info text (fmt, ap, 0);
     148                 :        7418 :   pp_format (m_pp, &text);
     149                 :        7418 :   pp_output_formatted_text (m_pp);
     150                 :        7418 : }
     151                 :             : 
     152                 :             : void
     153                 :       10477 : logger::end_log_line ()
     154                 :             : {
     155                 :       10477 :   pp_flush (m_pp);
     156                 :       10477 :   pp_clear_output_area (m_pp);
     157                 :       10477 :   fprintf (m_f_out, "\n");
     158                 :       10477 :   fflush (m_f_out);
     159                 :       10477 : }
     160                 :             : 
     161                 :             : /* Record the entry within a particular scope, indenting subsequent
     162                 :             :    log lines accordingly.  */
     163                 :             : 
     164                 :             : void
     165                 :        1673 : logger::enter_scope (const char *scope_name)
     166                 :             : {
     167                 :        1673 :   log ("entering: %s", scope_name);
     168                 :        1673 :   inc_indent ();
     169                 :        1673 : }
     170                 :             : 
     171                 :             : void
     172                 :         429 : logger::enter_scope (const char *scope_name, const char *fmt, va_list *ap)
     173                 :             : {
     174                 :         429 :   start_log_line ();
     175                 :         429 :   log_partial ("entering: %s: ", scope_name);
     176                 :         429 :   log_va_partial (fmt, ap);
     177                 :         429 :   end_log_line ();
     178                 :             : 
     179                 :         429 :   inc_indent ();
     180                 :         429 : }
     181                 :             : 
     182                 :             : 
     183                 :             : /* Record the exit from a particular scope, restoring the indent level to
     184                 :             :    before the scope was entered.  */
     185                 :             : 
     186                 :             : void
     187                 :        2102 : logger::exit_scope (const char *scope_name)
     188                 :             : {
     189                 :        2102 :   if (m_indent_level)
     190                 :        2102 :     dec_indent ();
     191                 :             :   else
     192                 :           0 :     log ("(mismatching indentation)");
     193                 :        2102 :   log ("exiting: %s", scope_name);
     194                 :        2102 : }
     195                 :             : 
     196                 :             : /* Implementation of class log_user.  */
     197                 :             : 
     198                 :             : /* The constructor for log_user.  */
     199                 :             : 
     200                 :     4347027 : log_user::log_user (logger *logger) : m_logger (logger)
     201                 :             : {
     202                 :     4347027 :   if (m_logger)
     203                 :        1467 :     m_logger->incref("log_user ctor");
     204                 :     4347027 : }
     205                 :             : 
     206                 :             : /* The destructor for log_user.  */
     207                 :             : 
     208                 :     4346915 : log_user::~log_user ()
     209                 :             : {
     210                 :     4346915 :   if (m_logger)
     211                 :        1471 :     m_logger->decref("log_user dtor");
     212                 :     4346915 : }
     213                 :             : 
     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).  */
     216                 :             : 
     217                 :             : void
     218                 :           4 : log_user::set_logger (logger *logger)
     219                 :             : {
     220                 :           4 :   if (logger)
     221                 :           4 :     logger->incref ("log_user::set_logger");
     222                 :           4 :   if (m_logger)
     223                 :           0 :     m_logger->decref ("log_user::set_logger");
     224                 :           4 :   m_logger = logger;
     225                 :           4 : }
     226                 :             : 
     227                 :             : } // namespace ana
     228                 :             : 
     229                 :             : #endif /* #if ENABLE_ANALYZER */
        

Generated by: LCOV version 2.1-beta

LCOV profile is generated on x86_64 machine using following configure options: configure --disable-bootstrap --enable-coverage=opt --enable-languages=c,c++,fortran,go,jit,lto,rust,m2 --enable-host-shared. GCC test suite is run with the built compiler.