fortran/trans-openmp.cc: Use the correct member in gfc_omp_namelist [PR118745]
[official-gcc.git] / gcc / analyzer / analyzer-language.cc
bloba0fa9f5dd6e65bf10a5a83a739c6f422e78ca044
1 /* Interface between analyzer and frontends.
2 Copyright (C) 2022-2025 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)
10 any later version.
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/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tree.h"
25 #include "stringpool.h"
26 #include "analyzer/analyzer.h"
27 #include "analyzer/analyzer-language.h"
28 #include "analyzer/analyzer-logging.h"
29 #include "diagnostic.h"
31 /* Map from identifier to INTEGER_CST. */
32 static GTY (()) hash_map <tree, tree> *analyzer_stashed_constants;
34 #if ENABLE_ANALYZER
36 namespace ana {
37 static vec<finish_translation_unit_callback>
38 *finish_translation_unit_callbacks;
40 void
41 register_finish_translation_unit_callback (
42 finish_translation_unit_callback callback)
44 if (!finish_translation_unit_callbacks)
45 vec_alloc (finish_translation_unit_callbacks, 1);
46 finish_translation_unit_callbacks->safe_push (callback);
49 static void
50 run_callbacks (logger *logger, const translation_unit &tu)
52 for (auto const &cb : finish_translation_unit_callbacks)
54 cb (logger, tu);
58 /* Call into TU to try to find a value for NAME.
59 If found, stash its value within analyzer_stashed_constants. */
61 static void
62 maybe_stash_named_constant (logger *logger,
63 const translation_unit &tu,
64 const char *name)
66 LOG_FUNC_1 (logger, "name: %qs", name);
68 if (!analyzer_stashed_constants)
69 analyzer_stashed_constants = hash_map<tree, tree>::create_ggc ();
71 tree id = get_identifier (name);
72 if (tree t = tu.lookup_constant_by_id (id))
74 gcc_assert (TREE_CODE (t) == INTEGER_CST);
75 analyzer_stashed_constants->put (id, t);
76 if (logger)
77 logger->log ("%qs: %qE", name, t);
79 else
81 if (logger)
82 logger->log ("%qs: not found", name);
86 /* Call into TU to try to find values for the names we care about.
87 If found, stash their values within analyzer_stashed_constants. */
89 static void
90 stash_named_constants (logger *logger, const translation_unit &tu)
92 LOG_SCOPE (logger);
94 /* Stash named constants for use by sm-fd.cc */
95 maybe_stash_named_constant (logger, tu, "O_ACCMODE");
96 maybe_stash_named_constant (logger, tu, "O_RDONLY");
97 maybe_stash_named_constant (logger, tu, "O_WRONLY");
98 maybe_stash_named_constant (logger, tu, "SOCK_STREAM");
99 maybe_stash_named_constant (logger, tu, "SOCK_DGRAM");
102 /* Hook for frontend to call into analyzer when TU finishes.
103 This exists so that the analyzer can stash named constant values from
104 header files (e.g. macros and enums) for later use when modeling the
105 behaviors of APIs.
107 By doing it this way, the analyzer can use the precise values for those
108 constants from the user's headers, rather than attempting to model them
109 as properties of the target. */
111 void
112 on_finish_translation_unit (const translation_unit &tu)
114 /* Bail if the analyzer isn't enabled. */
115 if (!flag_analyzer)
116 return;
118 FILE *logfile = get_or_create_any_logfile ();
119 log_user the_logger (NULL);
120 if (logfile)
121 the_logger.set_logger (new logger (logfile, 0, 0,
122 *global_dc->get_reference_printer ()));
123 stash_named_constants (the_logger.get_logger (), tu);
125 run_callbacks (the_logger.get_logger (), tu);
128 /* Lookup NAME in the named constants stashed when the frontend TU finished.
129 Return either an INTEGER_CST, or NULL_TREE. */
131 tree
132 get_stashed_constant_by_name (const char *name)
134 if (!analyzer_stashed_constants)
135 return NULL_TREE;
136 tree id = get_identifier (name);
137 if (tree *slot = analyzer_stashed_constants->get (id))
139 gcc_assert (TREE_CODE (*slot) == INTEGER_CST);
140 return *slot;
142 return NULL_TREE;
145 /* Log all stashed named constants to LOGGER. */
147 void
148 log_stashed_constants (logger *logger)
150 gcc_assert (logger);
151 LOG_SCOPE (logger);
152 if (analyzer_stashed_constants)
153 for (auto iter : *analyzer_stashed_constants)
154 logger->log ("%qE: %qE", iter.first, iter.second);
157 } // namespace ana
159 #endif /* #if ENABLE_ANALYZER */
161 #include "gt-analyzer-language.h"