Require target lra in gcc.dg/pr108095.c
[official-gcc.git] / gcc / analyzer / sm-pattern-test.cc
blob4c88bcaeb2b353c8adbed8e2b9ae53a2de5104d9
1 /* A state machine for use in DejaGnu tests, to check that
2 pattern-matching works as expected.
4 Copyright (C) 2019-2023 Free Software Foundation, Inc.
5 Contributed by David Malcolm <dmalcolm@redhat.com>.
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it
10 under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
14 GCC is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 #include "config.h"
24 #define INCLUDE_MEMORY
25 #include "system.h"
26 #include "coretypes.h"
27 #include "make-unique.h"
28 #include "tree.h"
29 #include "function.h"
30 #include "basic-block.h"
31 #include "gimple.h"
32 #include "tree-pretty-print.h"
33 #include "diagnostic-path.h"
34 #include "diagnostic-metadata.h"
35 #include "analyzer/analyzer.h"
36 #include "diagnostic-event-id.h"
37 #include "analyzer/analyzer-logging.h"
38 #include "analyzer/sm.h"
39 #include "analyzer/pending-diagnostic.h"
40 #include "analyzer/call-string.h"
41 #include "analyzer/program-point.h"
42 #include "analyzer/store.h"
43 #include "analyzer/region-model.h"
45 #if ENABLE_ANALYZER
47 namespace ana {
49 namespace {
51 /* A state machine for use in DejaGnu tests, to check that
52 pattern-matching works as expected. */
54 class pattern_test_state_machine : public state_machine
56 public:
57 pattern_test_state_machine (logger *logger);
59 bool inherited_state_p () const final override { return false; }
61 bool on_stmt (sm_context *sm_ctxt,
62 const supernode *node,
63 const gimple *stmt) const final override;
65 void on_condition (sm_context *sm_ctxt,
66 const supernode *node,
67 const gimple *stmt,
68 const svalue *lhs,
69 enum tree_code op,
70 const svalue *rhs) const final override;
72 bool can_purge_p (state_t s) const final override;
75 class pattern_match : public pending_diagnostic_subclass<pattern_match>
77 public:
78 pattern_match (tree lhs, enum tree_code op, tree rhs)
79 : m_lhs (lhs), m_op (op), m_rhs (rhs) {}
81 const char *get_kind () const final override { return "pattern_match"; }
83 bool operator== (const pattern_match &other) const
85 return (same_tree_p (m_lhs, other.m_lhs)
86 && m_op == other.m_op
87 && same_tree_p (m_rhs, other.m_rhs));
90 int get_controlling_option () const final override
92 return 0;
95 bool emit (rich_location *rich_loc, logger *) final override
97 return warning_at (rich_loc, get_controlling_option (),
98 "pattern match on %<%E %s %E%>",
99 m_lhs, op_symbol_code (m_op), m_rhs);
102 private:
103 tree m_lhs;
104 enum tree_code m_op;
105 tree m_rhs;
108 pattern_test_state_machine::pattern_test_state_machine (logger *logger)
109 : state_machine ("pattern-test", logger)
113 bool
114 pattern_test_state_machine::on_stmt (sm_context *sm_ctxt ATTRIBUTE_UNUSED,
115 const supernode *node ATTRIBUTE_UNUSED,
116 const gimple *stmt ATTRIBUTE_UNUSED) const
118 return false;
121 /* Implementation of state_machine::on_condition vfunc for
122 pattern_test_state_machine.
124 Queue a pattern_match diagnostic for any comparison against a
125 constant. */
127 void
128 pattern_test_state_machine::on_condition (sm_context *sm_ctxt,
129 const supernode *node,
130 const gimple *stmt,
131 const svalue *lhs,
132 enum tree_code op,
133 const svalue *rhs) const
135 if (stmt == NULL)
136 return;
138 tree rhs_cst = rhs->maybe_get_constant ();
139 if (!rhs_cst)
140 return;
142 if (tree lhs_expr = sm_ctxt->get_diagnostic_tree (lhs))
144 sm_ctxt->warn (node, stmt, lhs_expr,
145 make_unique<pattern_match> (lhs_expr, op, rhs_cst));
149 bool
150 pattern_test_state_machine::can_purge_p (state_t s ATTRIBUTE_UNUSED) const
152 return true;
155 } // anonymous namespace
157 /* Internal interface to this file. */
159 state_machine *
160 make_pattern_test_state_machine (logger *logger)
162 return new pattern_test_state_machine (logger);
165 } // namespace ana
167 #endif /* #if ENABLE_ANALYZER */