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)
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"
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
;
37 static vec
<finish_translation_unit_callback
>
38 *finish_translation_unit_callbacks
;
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
);
50 run_callbacks (logger
*logger
, const translation_unit
&tu
)
52 for (auto const &cb
: finish_translation_unit_callbacks
)
58 /* Call into TU to try to find a value for NAME.
59 If found, stash its value within analyzer_stashed_constants. */
62 maybe_stash_named_constant (logger
*logger
,
63 const translation_unit
&tu
,
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
);
77 logger
->log ("%qs: %qE", name
, t
);
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. */
90 stash_named_constants (logger
*logger
, const translation_unit
&tu
)
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
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. */
112 on_finish_translation_unit (const translation_unit
&tu
)
114 /* Bail if the analyzer isn't enabled. */
118 FILE *logfile
= get_or_create_any_logfile ();
119 log_user
the_logger (NULL
);
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. */
132 get_stashed_constant_by_name (const char *name
)
134 if (!analyzer_stashed_constants
)
136 tree id
= get_identifier (name
);
137 if (tree
*slot
= analyzer_stashed_constants
->get (id
))
139 gcc_assert (TREE_CODE (*slot
) == INTEGER_CST
);
145 /* Log all stashed named constants to LOGGER. */
148 log_stashed_constants (logger
*logger
)
152 if (analyzer_stashed_constants
)
153 for (auto iter
: *analyzer_stashed_constants
)
154 logger
->log ("%qE: %qE", iter
.first
, iter
.second
);
159 #endif /* #if ENABLE_ANALYZER */
161 #include "gt-analyzer-language.h"