GCC Middle and Back End API Reference
tree-ssanames.h
Go to the documentation of this file.
1/* SSA name expresssons routines
2 Copyright (C) 2013-2025 Free Software Foundation, Inc.
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
8Software Foundation; either version 3, or (at your option) any later
9version.
10
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16You should have received a copy of the GNU General Public License
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
19
20#ifndef GCC_TREE_SSANAMES_H
21#define GCC_TREE_SSANAMES_H
22
23/* Aliasing information for SSA_NAMEs representing pointer variables. */
24
25struct GTY(()) ptr_info_def
26{
27 /* The points-to solution. */
28 struct pt_solution pt;
29
30 /* Alignment and misalignment of the pointer in bytes. Together
31 align and misalign specify low known bits of the pointer.
32 ptr & (align - 1) == misalign. */
33
34 /* When known, this is the power-of-two byte alignment of the object this
35 pointer points into. This is usually DECL_ALIGN_UNIT for decls and
36 MALLOC_ABI_ALIGNMENT for allocated storage. When the alignment is not
37 known, it is zero. Do not access directly but use functions
38 get_ptr_info_alignment, set_ptr_info_alignment,
39 mark_ptr_info_alignment_unknown and similar. */
40 unsigned int align;
41
42 /* When alignment is known, the byte offset this pointer differs from the
43 above alignment. Access only through the same helper functions as align
44 above. */
45 unsigned int misalign;
46};
47
48
49#define SSANAMES(fun) (fun)->gimple_df->ssa_names
50#define DEFAULT_DEFS(fun) (fun)->gimple_df->default_defs
51
52#define num_ssa_names (vec_safe_length (cfun->gimple_df->ssa_names))
53#define ssa_name(i) ((*cfun->gimple_df->ssa_names)[(i)])
54
55#define FOR_EACH_SSA_NAME(I, VAR, FN) \
56 for (I = 1; SSANAMES (FN)->iterate (I, &VAR); ++I) \
57 if (VAR)
58
59/* Sets the value range to SSA. */
60extern bool set_range_info (tree, const vrange &);
61extern void set_nonzero_bits (tree, const wide_int &);
62extern void set_bitmask (tree, const wide_int &value, const wide_int &mask);
66extern void init_ssanames (struct function *, int);
67extern void fini_ssanames (struct function *);
68extern void ssanames_print_statistics (void);
69extern tree make_ssa_name_fn (struct function *, tree, gimple *,
70 unsigned int version = 0);
71extern void init_ssa_name_imm_use (tree);
72extern void release_ssa_name_fn (struct function *, tree);
73extern bool get_ptr_info_alignment (struct ptr_info_def *, unsigned int *,
74 unsigned int *);
76extern void set_ptr_info_alignment (struct ptr_info_def *, unsigned int,
77 unsigned int);
79extern struct ptr_info_def *get_ptr_info (tree);
80extern void set_ptr_nonnull (tree);
81
82extern tree copy_ssa_name_fn (struct function *, tree, gimple *);
83extern tree duplicate_ssa_name_fn (struct function *, tree, gimple *);
84extern void duplicate_ssa_name_ptr_info (tree, struct ptr_info_def *);
85extern void duplicate_ssa_name_range_info (tree dest, tree src);
86extern void maybe_duplicate_ssa_info_at_copy (tree dest, tree src);
89extern void release_defs (gimple *);
90extern void replace_ssa_name_symbol (tree, tree);
91extern void flush_ssaname_freelist (void);
92
93
94/* Return an SSA_NAME node for variable VAR defined in statement STMT
95 in function cfun. */
96
97inline tree
99{
100 return make_ssa_name_fn (cfun, var, stmt);
101}
102
103/* Return an SSA_NAME node using the template SSA name NAME defined in
104 statement STMT in function cfun. */
105
106inline tree
108{
109 return copy_ssa_name_fn (cfun, var, stmt);
110}
111
112/* Creates a duplicate of a SSA name NAME tobe defined by statement STMT
113 in function cfun. */
114
115inline tree
117{
118 return duplicate_ssa_name_fn (cfun, var, stmt);
119}
120
121/* Release the SSA name NAME used in function cfun. */
122
123inline void
125{
127}
128
129/* Return an anonymous SSA_NAME node for type TYPE defined in statement STMT
130 in function cfun. Arrange so that it uses NAME in dumps. */
131
132inline tree
141
142/* A class which is used to save/restore the flow sensitive information. */
144{
145public:
146 void save (tree);
147 void save_and_clear (tree);
148 void restore (tree);
149 void clear_storage ();
150private:
151 /* 0 means there is nothing saved.
152 1 means non pointer is saved.
153 -1 means a pointer type is saved.
154 -2 means a pointer type is saved but no information was saved. */
155 int state = 0;
156 /* The range info for non pointers */
158 /* Flow sensitive pointer information. */
159 unsigned int align = 0;
160 unsigned int misalign = 0;
161 bool null = true;
162};
163
164#endif /* GCC_TREE_SSANAMES_H */
Definition tree-ssanames.h:144
bool null
Definition tree-ssanames.h:161
void restore(tree)
Definition tree-ssanames.cc:1080
vrange_storage * range_info
Definition tree-ssanames.h:157
void clear_storage()
Definition tree-ssanames.cc:1114
unsigned int align
Definition tree-ssanames.h:159
void save_and_clear(tree)
Definition tree-ssanames.cc:1106
unsigned int misalign
Definition tree-ssanames.h:160
void save(tree)
Definition tree-ssanames.cc:1052
Definition value-range-storage.h:50
Definition value-range.h:78
const union tree_node * const_tree
Definition coretypes.h:98
#define GTY(x)
Definition coretypes.h:41
union tree_node * tree
Definition coretypes.h:97
#define cfun
Definition function.h:478
tree get_identifier(const char *text)
Definition stringpool.cc:105
Definition basic-block.h:117
Definition function.h:249
Definition gimple.h:221
Definition tree-ssa-alias.h:29
Definition tree-ssanames.h:26
unsigned int misalign
Definition tree-ssanames.h:45
unsigned int align
Definition tree-ssanames.h:40
struct pt_solution pt
Definition tree-ssanames.h:28
Definition genautomata.cc:669
Definition gengtype.h:252
#define NULL
Definition system.h:50
#define gcc_checking_assert(EXPR)
Definition system.h:821
void set_ptr_nonnull(tree)
Definition tree-ssanames.cc:462
void replace_ssa_name_symbol(tree, tree)
Definition tree-ssanames.cc:959
tree make_temp_ssa_name(tree type, gimple *stmt, const char *name)
Definition tree-ssanames.h:133
void init_ssanames(struct function *, int)
Definition tree-ssanames.cc:146
tree duplicate_ssa_name(tree var, gimple *stmt)
Definition tree-ssanames.h:116
void maybe_duplicate_ssa_info_at_copy(tree dest, tree src)
Definition tree-ssanames.cc:857
wide_int get_nonzero_bits(const_tree)
Definition tree-ssanames.cc:537
void duplicate_ssa_name_ptr_info(tree, struct ptr_info_def *)
Definition tree-ssanames.cc:823
tree make_ssa_name_fn(struct function *, tree, gimple *, unsigned int version=0)
Definition tree-ssanames.cc:351
void reset_flow_sensitive_info_in_bb(basic_block)
Definition tree-ssanames.cc:922
tree duplicate_ssa_name_fn(struct function *, tree, gimple *)
Definition tree-ssanames.cc:880
wide_int get_known_nonzero_bits(const_tree)
Definition tree-ssanames.cc:588
void set_nonzero_bits(tree, const wide_int &)
Definition tree-ssanames.cc:472
void set_bitmask(tree, const wide_int &value, const wide_int &mask)
Definition tree-ssanames.cc:487
void flush_ssaname_freelist(void)
Definition tree-ssanames.cc:322
struct ptr_info_def * get_ptr_info(tree)
Definition tree-ssanames.cc:780
tree make_ssa_name(tree var, gimple *stmt=NULL)
Definition tree-ssanames.h:98
void init_ssa_name_imm_use(tree)
Definition tree-ssanames.cc:334
void mark_ptr_info_alignment_unknown(struct ptr_info_def *)
Definition tree-ssanames.cc:737
bool ssa_name_has_boolean_range(tree)
Definition tree-ssanames.cc:614
void ssanames_print_statistics(void)
Definition tree-ssanames.cc:189
tree copy_ssa_name_fn(struct function *, tree, gimple *)
Definition tree-ssanames.cc:803
void duplicate_ssa_name_range_info(tree dest, tree src)
Definition tree-ssanames.cc:840
#define ssa_name(i)
Definition tree-ssanames.h:53
void set_ptr_info_alignment(struct ptr_info_def *, unsigned int, unsigned int)
Definition tree-ssanames.cc:748
void reset_flow_sensitive_info(tree)
Definition tree-ssanames.cc:901
void fini_ssanames(struct function *)
Definition tree-ssanames.cc:171
void release_defs(gimple *)
Definition tree-ssanames.cc:945
bool get_ptr_info_alignment(struct ptr_info_def *, unsigned int *, unsigned int *)
Definition tree-ssanames.cc:721
bool set_range_info(tree, const vrange &)
Definition tree-ssanames.cc:417
tree copy_ssa_name(tree var, gimple *stmt=NULL)
Definition tree-ssanames.h:107
void release_ssa_name_fn(struct function *, tree)
Definition tree-ssanames.cc:651
void adjust_ptr_info_misalignment(struct ptr_info_def *, poly_uint64)
Definition tree-ssanames.cc:763
void release_ssa_name(tree name)
Definition tree-ssanames.h:124
#define SET_SSA_NAME_VAR_OR_IDENTIFIER(NODE, VAR)
Definition tree.h:2123
#define TYPE_P(NODE)
Definition tree.h:226