1 /* A state machine for use in DejaGnu tests, to check that
2 pattern-matching works as expected.
4 Copyright (C) 2019-2022 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)
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/>. */
24 #define INCLUDE_MEMORY
26 #include "coretypes.h"
27 #include "make-unique.h"
30 #include "basic-block.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"
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
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
,
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
>
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
)
87 && same_tree_p (m_rhs
, other
.m_rhs
));
90 int get_controlling_option () const final override
95 bool emit (rich_location
*rich_loc
) 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
);
108 pattern_test_state_machine::pattern_test_state_machine (logger
*logger
)
109 : state_machine ("pattern-test", logger
)
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
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
128 pattern_test_state_machine::on_condition (sm_context
*sm_ctxt
,
129 const supernode
*node
,
133 const svalue
*rhs
) const
138 tree rhs_cst
= rhs
->maybe_get_constant ();
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
));
150 pattern_test_state_machine::can_purge_p (state_t s ATTRIBUTE_UNUSED
) const
155 } // anonymous namespace
157 /* Internal interface to this file. */
160 make_pattern_test_state_machine (logger
*logger
)
162 return new pattern_test_state_machine (logger
);
167 #endif /* #if ENABLE_ANALYZER */