c++: catch parm initialization tweak
[official-gcc.git] / gcc / gimple-range.h
blob8b2ff5685e5160a089b323b9e262acc649db23ed
1 /* Header file for the GIMPLE range interface.
2 Copyright (C) 2019-2022 Free Software Foundation, Inc.
3 Contributed by Andrew MacLeod <amacleod@redhat.com>
4 and Aldy Hernandez <aldyh@redhat.com>.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #ifndef GCC_GIMPLE_RANGE_H
23 #define GCC_GIMPLE_RANGE_H
25 #include "range.h"
26 #include "value-query.h"
27 #include "gimple-range-op.h"
28 #include "gimple-range-trace.h"
29 #include "gimple-range-edge.h"
30 #include "gimple-range-fold.h"
31 #include "gimple-range-gori.h"
32 #include "gimple-range-cache.h"
34 // This is the basic range generator interface.
36 // This base class provides all the API entry points, but only provides
37 // functionality at the statement level. Ie, it can calculate ranges on
38 // statements, but does no additonal lookup.
40 // All the range_of_* methods will return a range if the types is
41 // supported by the range engine. It may be the full range for the
42 // type, AKA varying_p or it may be a refined range. If the range
43 // type is not supported, then false is returned. Non-statement
44 // related methods return whatever the current global value is.
46 class gimple_ranger : public range_query
48 public:
49 gimple_ranger (bool use_imm_uses = true);
50 ~gimple_ranger ();
51 virtual bool range_of_stmt (vrange &r, gimple *, tree name = NULL) override;
52 virtual bool range_of_expr (vrange &r, tree name, gimple * = NULL) override;
53 virtual bool range_on_edge (vrange &r, edge e, tree name) override;
54 void range_on_entry (vrange &r, basic_block bb, tree name);
55 void range_on_exit (vrange &r, basic_block bb, tree name);
56 void export_global_ranges ();
57 inline gori_compute &gori () { return m_cache.m_gori; }
58 virtual void dump (FILE *f) override;
59 void debug ();
60 void dump_bb (FILE *f, basic_block bb);
61 auto_edge_flag non_executable_edge_flag;
62 bool fold_stmt (gimple_stmt_iterator *gsi, tree (*) (tree));
63 void register_inferred_ranges (gimple *s);
64 protected:
65 bool fold_range_internal (vrange &r, gimple *s, tree name);
66 void prefill_name (vrange &r, tree name);
67 void prefill_stmt_dependencies (tree ssa);
68 ranger_cache m_cache;
69 range_tracer tracer;
70 basic_block current_bb;
71 vec<tree> m_stmt_list;
72 friend class path_range_query;
75 /* Create a new ranger instance and associate it with a function.
76 Each call must be paired with a call to disable_ranger to release
77 resources. If USE_IMM_USES is true, pre-calculate sideffects like
78 non-null uses as required using the immediate use chains. */
79 extern gimple_ranger *enable_ranger (struct function *m,
80 bool use_imm_uses = true);
81 extern void disable_ranger (struct function *);
83 #endif // GCC_GIMPLE_RANGE_H