1 /* A state machine for use in DejaGnu tests, to check that
2 pattern-matching works as expected.
4 Copyright (C) 2019-2021 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/>. */
25 #include "coretypes.h"
28 #include "basic-block.h"
30 #include "tree-pretty-print.h"
31 #include "diagnostic-path.h"
32 #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"
42 #include "analyzer/call-string.h"
43 #include "analyzer/program-point.h"
44 #include "analyzer/store.h"
45 #include "analyzer/region-model.h"
53 /* A state machine for use in DejaGnu tests, to check that
54 pattern-matching works as expected. */
56 class pattern_test_state_machine
: public state_machine
59 pattern_test_state_machine (logger
*logger
);
61 bool inherited_state_p () const FINAL OVERRIDE
{ return false; }
63 bool on_stmt (sm_context
*sm_ctxt
,
64 const supernode
*node
,
65 const gimple
*stmt
) const FINAL OVERRIDE
;
67 void on_condition (sm_context
*sm_ctxt
,
68 const supernode
*node
,
72 const svalue
*rhs
) const FINAL OVERRIDE
;
74 bool can_purge_p (state_t s
) const FINAL OVERRIDE
;
77 class pattern_match
: public pending_diagnostic_subclass
<pattern_match
>
80 pattern_match (tree lhs
, enum tree_code op
, tree rhs
)
81 : m_lhs (lhs
), m_op (op
), m_rhs (rhs
) {}
83 const char *get_kind () const FINAL OVERRIDE
{ return "pattern_match"; }
85 bool operator== (const pattern_match
&other
) const
87 return (same_tree_p (m_lhs
, other
.m_lhs
)
89 && same_tree_p (m_rhs
, other
.m_rhs
));
92 bool emit (rich_location
*rich_loc
) FINAL OVERRIDE
94 return warning_at (rich_loc
, 0, "pattern match on %<%E %s %E%>",
95 m_lhs
, op_symbol_code (m_op
), m_rhs
);
104 pattern_test_state_machine::pattern_test_state_machine (logger
*logger
)
105 : state_machine ("pattern-test", logger
)
110 pattern_test_state_machine::on_stmt (sm_context
*sm_ctxt ATTRIBUTE_UNUSED
,
111 const supernode
*node ATTRIBUTE_UNUSED
,
112 const gimple
*stmt ATTRIBUTE_UNUSED
) const
117 /* Implementation of state_machine::on_condition vfunc for
118 pattern_test_state_machine.
120 Queue a pattern_match diagnostic for any comparison against a
124 pattern_test_state_machine::on_condition (sm_context
*sm_ctxt
,
125 const supernode
*node
,
129 const svalue
*rhs
) const
134 tree rhs_cst
= rhs
->maybe_get_constant ();
138 if (tree lhs_expr
= sm_ctxt
->get_diagnostic_tree (lhs
))
140 pending_diagnostic
*diag
= new pattern_match (lhs_expr
, op
, rhs_cst
);
141 sm_ctxt
->warn (node
, stmt
, lhs_expr
, diag
);
146 pattern_test_state_machine::can_purge_p (state_t s ATTRIBUTE_UNUSED
) const
151 } // anonymous namespace
153 /* Internal interface to this file. */
156 make_pattern_test_state_machine (logger
*logger
)
158 return new pattern_test_state_machine (logger
);
163 #endif /* #if ENABLE_ANALYZER */