1 /* Support routines for value queries.
2 Copyright (C) 2020-2023 Free Software Foundation, Inc.
3 Contributed by Aldy Hernandez <aldyh@redhat.com> and
4 Andrew MacLeod <amacleod@redhat.com>.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License 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/>. */
24 #include "coretypes.h"
29 #include "tree-pretty-print.h"
30 #include "fold-const.h"
31 #include "value-query.h"
32 #include "alloc-pool.h"
33 #include "gimple-range.h"
34 #include "value-range-storage.h"
36 // value_query default methods.
39 value_query::value_on_edge (edge
, tree expr
)
41 return value_of_expr (expr
);
45 value_query::value_of_stmt (gimple
*stmt
, tree name
)
48 name
= gimple_get_lhs (stmt
);
50 gcc_checking_assert (!name
|| name
== gimple_get_lhs (stmt
));
53 return value_of_expr (name
);
57 // range_query default methods.
60 range_query::range_on_edge (vrange
&r
, edge
, tree expr
)
62 return range_of_expr (r
, expr
);
66 range_query::range_of_stmt (vrange
&r
, gimple
*stmt
, tree name
)
69 name
= gimple_get_lhs (stmt
);
71 gcc_checking_assert (!name
|| name
== gimple_get_lhs (stmt
));
74 return range_of_expr (r
, name
);
79 range_query::value_of_expr (tree expr
, gimple
*stmt
)
83 if (!Value_Range::supports_type_p (TREE_TYPE (expr
)))
86 Value_Range
r (TREE_TYPE (expr
));
88 if (range_of_expr (r
, expr
, stmt
))
90 // A constant used in an unreachable block often returns as UNDEFINED.
91 // If the result is undefined, check the global value for a constant.
93 range_of_expr (r
, expr
);
94 if (r
.singleton_p (&t
))
101 range_query::value_on_edge (edge e
, tree expr
)
105 if (!Value_Range::supports_type_p (TREE_TYPE (expr
)))
107 Value_Range
r (TREE_TYPE (expr
));
108 if (range_on_edge (r
, e
, expr
))
110 // A constant used in an unreachable block often returns as UNDEFINED.
111 // If the result is undefined, check the global value for a constant.
112 if (r
.undefined_p ())
113 range_of_expr (r
, expr
);
114 if (r
.singleton_p (&t
))
122 range_query::value_of_stmt (gimple
*stmt
, tree name
)
127 name
= gimple_get_lhs (stmt
);
129 gcc_checking_assert (!name
|| name
== gimple_get_lhs (stmt
));
131 if (!name
|| !Value_Range::supports_type_p (TREE_TYPE (name
)))
133 Value_Range
r (TREE_TYPE (name
));
134 if (range_of_stmt (r
, stmt
, name
) && r
.singleton_p (&t
))
141 range_query::dump (FILE *)
145 // valuation_query support routines for value_range's.
147 class equiv_allocator
: public object_allocator
<value_range
>
151 : object_allocator
<value_range
> ("equiv_allocator pool") { }
155 range_query::get_value_range (const_tree expr
, gimple
*stmt
)
158 if (range_of_expr (r
, const_cast<tree
> (expr
), stmt
))
159 return new (equiv_alloc
->allocate ()) value_range (r
);
160 return new (equiv_alloc
->allocate ()) value_range (TREE_TYPE (expr
));
163 range_query::range_query ()
165 equiv_alloc
= new equiv_allocator
;
169 range_query::~range_query ()
171 equiv_alloc
->release ();
175 // Return a range in R for the tree EXPR. Return true if a range is
176 // representable, and UNDEFINED/false if not.
179 range_query::get_tree_range (vrange
&r
, tree expr
, gimple
*stmt
)
185 type
= TREE_TYPE (expr
);
187 if (!Value_Range::supports_type_p (type
))
194 r
.set_varying (type
);
197 switch (TREE_CODE (expr
))
200 if (TREE_OVERFLOW_P (expr
))
201 expr
= drop_tree_overflow (expr
);
207 frange
&f
= as_a
<frange
> (r
);
209 if (!real_isnan (TREE_REAL_CST_PTR (expr
)))
215 gimple_range_global (r
, expr
);
220 // Handle &var which can show up in phi arguments.
222 if (tree_single_nonzero_warnv_p (expr
, &ov
))
224 r
.set_nonzero (type
);
233 if (BINARY_CLASS_P (expr
) || COMPARISON_CLASS_P (expr
))
235 tree op0
= TREE_OPERAND (expr
, 0);
236 tree op1
= TREE_OPERAND (expr
, 1);
237 if (COMPARISON_CLASS_P (expr
)
238 && !Value_Range::supports_type_p (TREE_TYPE (op0
)))
240 range_op_handler
op (TREE_CODE (expr
),
241 BINARY_CLASS_P (expr
) ? type
: TREE_TYPE (op0
));
244 Value_Range
r0 (TREE_TYPE (op0
));
245 Value_Range
r1 (TREE_TYPE (op1
));
246 range_of_expr (r0
, op0
, stmt
);
247 range_of_expr (r1
, op1
, stmt
);
248 if (!op
.fold_range (r
, type
, r0
, r1
))
249 r
.set_varying (type
);
252 r
.set_varying (type
);
255 if (UNARY_CLASS_P (expr
))
257 range_op_handler
op (TREE_CODE (expr
), type
);
258 tree op0_type
= TREE_TYPE (TREE_OPERAND (expr
, 0));
259 if (op
&& Value_Range::supports_type_p (op0_type
))
261 Value_Range
r0 (TREE_TYPE (TREE_OPERAND (expr
, 0)));
262 Value_Range
r1 (type
);
263 r1
.set_varying (type
);
264 range_of_expr (r0
, TREE_OPERAND (expr
, 0), stmt
);
265 if (!op
.fold_range (r
, type
, r0
, r1
))
266 r
.set_varying (type
);
269 r
.set_varying (type
);
272 r
.set_varying (type
);
276 // Return the range for NAME from SSA_NAME_RANGE_INFO.
279 get_ssa_name_range_info (vrange
&r
, const_tree name
)
281 tree type
= TREE_TYPE (name
);
282 gcc_checking_assert (!POINTER_TYPE_P (type
));
283 gcc_checking_assert (TREE_CODE (name
) == SSA_NAME
);
285 void *ri
= SSA_NAME_RANGE_INFO (name
);
289 vrange_storage
vstore (NULL
);
290 vstore
.get_vrange (ri
, r
, TREE_TYPE (name
));
293 r
.set_varying (type
);
296 // Return nonnull attribute of pointer NAME from SSA_NAME_PTR_INFO.
299 get_ssa_name_ptr_info_nonnull (const_tree name
)
301 gcc_assert (POINTER_TYPE_P (TREE_TYPE (name
)));
302 struct ptr_info_def
*pi
= SSA_NAME_PTR_INFO (name
);
305 /* TODO Now pt->null is conservatively set to true in PTA
306 analysis. vrp is the only pass (including ipa-vrp)
307 that clears pt.null via set_ptr_nonnull when it knows
308 for sure. PTA will preserves the pt.null value set by VRP.
310 When PTA analysis is improved, pt.anything, pt.nonlocal
311 and pt.escaped may also has to be considered before
312 deciding that pointer cannot point to NULL. */
316 // Update the global range for NAME into the SSA_RANGE_NAME_INFO and
317 // Return the legacy global range for NAME if it has one, otherwise
321 get_range_global (vrange
&r
, tree name
, struct function
*fun
= cfun
)
323 tree type
= TREE_TYPE (name
);
325 if (SSA_NAME_IS_DEFAULT_DEF (name
))
327 tree sym
= SSA_NAME_VAR (name
);
328 // Adapted from vr_values::get_lattice_entry().
329 // Use a range from an SSA_NAME's available range.
330 if (TREE_CODE (sym
) == PARM_DECL
)
332 // Try to use the "nonnull" attribute to create ~[0, 0]
333 // anti-ranges for pointers. Note that this is only valid with
334 // default definitions of PARM_DECLs.
335 if (POINTER_TYPE_P (type
)
336 && ((cfun
&& fun
== cfun
&& nonnull_arg_p (sym
))
337 || get_ssa_name_ptr_info_nonnull (name
)))
338 r
.set_nonzero (type
);
339 else if (!POINTER_TYPE_P (type
))
341 get_ssa_name_range_info (r
, name
);
342 if (r
.undefined_p ())
343 r
.set_varying (type
);
346 r
.set_varying (type
);
348 // If this is a local automatic with no definition, use undefined.
349 else if (TREE_CODE (sym
) != RESULT_DECL
)
352 r
.set_varying (type
);
354 else if (!POINTER_TYPE_P (type
) && SSA_NAME_RANGE_INFO (name
))
356 get_ssa_name_range_info (r
, name
);
357 if (r
.undefined_p ())
358 r
.set_varying (type
);
360 else if (POINTER_TYPE_P (type
) && SSA_NAME_PTR_INFO (name
))
362 if (get_ssa_name_ptr_info_nonnull (name
))
363 r
.set_nonzero (type
);
365 r
.set_varying (type
);
368 r
.set_varying (type
);
371 // This is where the ranger picks up global info to seed initial
372 // requests. It is a slightly restricted version of
373 // get_range_global() above.
375 // The reason for the difference is that we can always pick the
376 // default definition of an SSA with no adverse effects, but for other
377 // SSAs, if we pick things up to early, we may prematurely eliminate
378 // builtin_unreachables.
380 // Without this restriction, the test in g++.dg/tree-ssa/pr61034.C has
381 // all of its unreachable calls removed too early.
383 // See discussion here:
384 // https://gcc.gnu.org/pipermail/gcc-patches/2021-June/571709.html
387 gimple_range_global (vrange
&r
, tree name
, struct function
*fun
)
389 tree type
= TREE_TYPE (name
);
390 gcc_checking_assert (TREE_CODE (name
) == SSA_NAME
);
392 if (SSA_NAME_IS_DEFAULT_DEF (name
) || (fun
&& fun
->after_inlining
)
393 || is_a
<gphi
*> (SSA_NAME_DEF_STMT (name
)))
395 get_range_global (r
, name
, fun
);
398 r
.set_varying (type
);
401 // ----------------------------------------------
402 // global_range_query implementation.
404 global_range_query global_ranges
;
407 global_range_query::range_of_expr (vrange
&r
, tree expr
, gimple
*stmt
)
409 if (!gimple_range_ssa_p (expr
))
410 return get_tree_range (r
, expr
, stmt
);
412 get_range_global (r
, expr
);
417 // Return any known relation between SSA1 and SSA2 before stmt S is executed.
418 // If GET_RANGE is true, query the range of both operands first to ensure
419 // the definitions have been processed and any relations have be created.
422 range_query::query_relation (gimple
*s
, tree ssa1
, tree ssa2
, bool get_range
)
424 if (!m_oracle
|| TREE_CODE (ssa1
) != SSA_NAME
|| TREE_CODE (ssa2
) != SSA_NAME
)
427 // Ensure ssa1 and ssa2 have both been evaluated.
430 Value_Range
tmp1 (TREE_TYPE (ssa1
));
431 Value_Range
tmp2 (TREE_TYPE (ssa2
));
432 range_of_expr (tmp1
, ssa1
, s
);
433 range_of_expr (tmp2
, ssa2
, s
);
435 return m_oracle
->query_relation (gimple_bb (s
), ssa1
, ssa2
);
438 // Return any known relation between SSA1 and SSA2 on edge E.
439 // If GET_RANGE is true, query the range of both operands first to ensure
440 // the definitions have been processed and any relations have be created.
443 range_query::query_relation (edge e
, tree ssa1
, tree ssa2
, bool get_range
)
446 if (!m_oracle
|| TREE_CODE (ssa1
) != SSA_NAME
|| TREE_CODE (ssa2
) != SSA_NAME
)
449 // Use destination block if it has a single predecessor, and this picks
450 // up any relation on the edge.
451 // Otherwise choose the src edge and the result is the same as on-exit.
452 if (!single_pred_p (e
->dest
))
457 // Ensure ssa1 and ssa2 have both been evaluated.
460 Value_Range
tmp (TREE_TYPE (ssa1
));
461 range_on_edge (tmp
, e
, ssa1
);
462 range_on_edge (tmp
, e
, ssa2
);
464 return m_oracle
->query_relation (bb
, ssa1
, ssa2
);