LCOV - code coverage report
Current view: top level - gcc/c-family - name-hint.h (source / functions) Coverage Total Hit
Test: gcc.info Lines: 80.0 % 20 16
Test Date: 2024-04-20 14:03:02 Functions: 0.0 % 2 0
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: - 0 0

             Branch data     Line data    Source code
       1                 :             : /* Support for offering suggestions for handling unrecognized names.
       2                 :             :    Copyright (C) 2016-2024 Free Software Foundation, Inc.
       3                 :             : 
       4                 :             : This file is part of GCC.
       5                 :             : 
       6                 :             : GCC is free software; you can redistribute it and/or modify it under
       7                 :             : the terms of the GNU General Public License as published by the Free
       8                 :             : Software Foundation; either version 3, or (at your option) any later
       9                 :             : version.
      10                 :             : 
      11                 :             : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
      12                 :             : WARRANTY; without even the implied warranty of MERCHANTABILITY or
      13                 :             : FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
      14                 :             : for more details.
      15                 :             : 
      16                 :             : You should have received a copy of the GNU General Public License
      17                 :             : along with GCC; see the file COPYING3.  If not see
      18                 :             : <http://www.gnu.org/licenses/>.  */
      19                 :             : 
      20                 :             : #ifndef GCC_NAME_HINT_H
      21                 :             : #define GCC_NAME_HINT_H
      22                 :             : 
      23                 :             : /* This header uses std::unique_ptr, but <memory> can't be directly
      24                 :             :    included due to issues with macros.  Hence it must be included from
      25                 :             :    system.h by defining INCLUDE_MEMORY in any source file using it.  */
      26                 :             : 
      27                 :             : #ifndef INCLUDE_MEMORY
      28                 :             : # error "You must define INCLUDE_MEMORY before including system.h to use name-hint.h"
      29                 :             : #endif
      30                 :             : 
      31                 :             : enum lookup_name_fuzzy_kind {
      32                 :             :   /* Names of types.  */
      33                 :             :   FUZZY_LOOKUP_TYPENAME,
      34                 :             : 
      35                 :             :   /* Names of function decls.  */
      36                 :             :   FUZZY_LOOKUP_FUNCTION_NAME,
      37                 :             : 
      38                 :             :   /* Any name.  */
      39                 :             :   FUZZY_LOOKUP_NAME
      40                 :             : };
      41                 :             : 
      42                 :             : /* A deferred_diagnostic is a wrapper around optional extra diagnostics
      43                 :             :    that we may want to bundle into a name_hint.
      44                 :             : 
      45                 :             :    The diagnostic is emitted by the subclass destructor, which should
      46                 :             :    check that is_suppressed_p () is not true.  */
      47                 :             : 
      48                 :             : class deferred_diagnostic
      49                 :             : {
      50                 :             :  public:
      51                 :         424 :   virtual ~deferred_diagnostic () {}
      52                 :             : 
      53                 :         612 :   location_t get_location () const { return m_loc; }
      54                 :             : 
      55                 :             :   /* Call this if the corresponding warning was not emitted,
      56                 :             :      in which case we should also not emit the deferred_diagnostic.  */
      57                 :           0 :   void suppress ()
      58                 :             :   {
      59                 :           0 :     m_suppress = true;
      60                 :           0 :   }
      61                 :             : 
      62                 :         424 :   bool is_suppressed_p () const { return m_suppress; }
      63                 :             : 
      64                 :             :  protected:
      65                 :         741 :   deferred_diagnostic (location_t loc)
      66                 :         719 :   : m_loc (loc), m_suppress (false) {}
      67                 :             : 
      68                 :             :  private:
      69                 :             :   location_t m_loc;
      70                 :             :   bool m_suppress;
      71                 :             : };
      72                 :             : 
      73                 :             : /* A name_hint is an optional string suggestion, along with an
      74                 :             :    optional deferred_diagnostic.
      75                 :             :    For example:
      76                 :             : 
      77                 :             :        error: unknown foo named 'bar'
      78                 :             : 
      79                 :             :    if the SUGGESTION is "baz", then one might print:
      80                 :             : 
      81                 :             :        error: unknown foo named 'bar'; did you mean 'baz'?
      82                 :             : 
      83                 :             :    and the deferred_diagnostic allows for additional (optional)
      84                 :             :    diagnostics e.g.:
      85                 :             : 
      86                 :             :        note: did you check behind the couch?
      87                 :             : 
      88                 :             :    The deferred_diagnostic is emitted by its destructor, when the
      89                 :             :    name_hint goes out of scope.  */
      90                 :             : 
      91                 :       20961 : class name_hint
      92                 :             : {
      93                 :             : public:
      94                 :       13671 :   name_hint () : m_suggestion (NULL), m_deferred () {}
      95                 :             : 
      96                 :        4876 :   name_hint (const char *suggestion, deferred_diagnostic *deferred)
      97                 :        4858 :   : m_suggestion (suggestion), m_deferred (deferred)
      98                 :             :   {
      99                 :        4826 :   }
     100                 :             : 
     101                 :        5704 :   const char *suggestion () const { return m_suggestion; }
     102                 :             : 
     103                 :             :   /* Does this name_hint have a suggestion or a deferred diagnostic?  */
     104                 :        2547 :   operator bool () const { return (m_suggestion != NULL
     105                 :        2547 :                                    || m_deferred != NULL); }
     106                 :             : 
     107                 :             :   /* Take ownership of this name_hint's deferred_diagnostic, for use
     108                 :             :      in chaining up deferred diagnostics.  */
     109                 :           3 :   std::unique_ptr<deferred_diagnostic> take_deferred () { return std::move (m_deferred); }
     110                 :             : 
     111                 :             :   /* Call this on a name_hint if the corresponding warning was not emitted,
     112                 :             :      in which case we should also not emit the deferred_diagnostic.  */
     113                 :             : 
     114                 :        1069 :   void suppress ()
     115                 :             :   {
     116                 :        1069 :     if (m_deferred)
     117                 :           0 :       m_deferred->suppress ();
     118                 :             :   }
     119                 :             : 
     120                 :             : private:
     121                 :             :   const char *m_suggestion;
     122                 :             :   std::unique_ptr<deferred_diagnostic> m_deferred;
     123                 :             : };
     124                 :             : 
     125                 :             : extern name_hint lookup_name_fuzzy (tree, enum lookup_name_fuzzy_kind,
     126                 :             :                                     location_t);
     127                 :             : 
     128                 :             : #endif /* ! GCC_NAME_HINT_H */
        

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.