1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
|
/* Support routines for value queries.
Copyright (C) 2020-2022 Free Software Foundation, Inc.
Contributed by Aldy Hernandez <aldyh@redhat.com> and
Andrew MacLeod <amacleod@redhat.com>.
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3. If not see
<http://www.gnu.org/licenses/>. */
#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "backend.h"
#include "tree.h"
#include "gimple.h"
#include "ssa.h"
#include "tree-pretty-print.h"
#include "fold-const.h"
#include "value-range-equiv.h"
#include "value-query.h"
#include "alloc-pool.h"
#include "gimple-range.h"
// value_query default methods.
tree
value_query::value_on_edge (edge, tree expr)
{
return value_of_expr (expr);
}
tree
value_query::value_of_stmt (gimple *stmt, tree name)
{
if (!name)
name = gimple_get_lhs (stmt);
gcc_checking_assert (!name || name == gimple_get_lhs (stmt));
if (name)
return value_of_expr (name);
return NULL_TREE;
}
// range_query default methods.
bool
range_query::range_on_edge (irange &r, edge, tree expr)
{
return range_of_expr (r, expr);
}
bool
range_query::range_of_stmt (irange &r, gimple *stmt, tree name)
{
if (!name)
name = gimple_get_lhs (stmt);
gcc_checking_assert (!name || name == gimple_get_lhs (stmt));
if (name)
return range_of_expr (r, name);
return false;
}
tree
range_query::value_of_expr (tree expr, gimple *stmt)
{
tree t;
int_range_max r;
if (!irange::supports_type_p (TREE_TYPE (expr)))
return NULL_TREE;
if (range_of_expr (r, expr, stmt))
{
// A constant used in an unreachable block oftens returns as UNDEFINED.
// If the result is undefined, check the global value for a constant.
if (r.undefined_p ())
range_of_expr (r, expr);
if (r.singleton_p (&t))
return t;
}
return NULL_TREE;
}
tree
range_query::value_on_edge (edge e, tree expr)
{
tree t;
int_range_max r;
if (!irange::supports_type_p (TREE_TYPE (expr)))
return NULL_TREE;
if (range_on_edge (r, e, expr))
{
// A constant used in an unreachable block oftens returns as UNDEFINED.
// If the result is undefined, check the global value for a constant.
if (r.undefined_p ())
range_of_expr (r, expr);
if (r.singleton_p (&t))
return t;
}
return NULL_TREE;
}
tree
range_query::value_of_stmt (gimple *stmt, tree name)
{
tree t;
int_range_max r;
if (!name)
name = gimple_get_lhs (stmt);
gcc_checking_assert (!name || name == gimple_get_lhs (stmt));
if (!name || !irange::supports_type_p (TREE_TYPE (name)))
return NULL_TREE;
if (range_of_stmt (r, stmt, name) && r.singleton_p (&t))
return t;
return NULL_TREE;
}
void
range_query::dump (FILE *)
{
}
// valuation_query support routines for value_range_equiv's.
class equiv_allocator : public object_allocator<value_range_equiv>
{
public:
equiv_allocator ()
: object_allocator<value_range_equiv> ("equiv_allocator pool") { }
};
value_range_equiv *
range_query::allocate_value_range_equiv ()
{
return new (equiv_alloc->allocate ()) value_range_equiv;
}
void
range_query::free_value_range_equiv (value_range_equiv *v)
{
equiv_alloc->remove (v);
}
const class value_range_equiv *
range_query::get_value_range (const_tree expr, gimple *stmt)
{
int_range_max r;
if (range_of_expr (r, const_cast<tree> (expr), stmt))
return new (equiv_alloc->allocate ()) value_range_equiv (r);
return new (equiv_alloc->allocate ()) value_range_equiv (TREE_TYPE (expr));
}
range_query::range_query ()
{
equiv_alloc = new equiv_allocator;
m_oracle = NULL;
}
range_query::~range_query ()
{
equiv_alloc->release ();
delete equiv_alloc;
}
// Return a range in R for the tree EXPR. Return true if a range is
// representable, and UNDEFINED/false if not.
bool
range_query::get_tree_range (irange &r, tree expr, gimple *stmt)
{
tree type;
if (TYPE_P (expr))
type = expr;
else
type = TREE_TYPE (expr);
if (!irange::supports_type_p (type))
{
r.set_undefined ();
return false;
}
if (expr == type)
{
r.set_varying (type);
return true;
}
switch (TREE_CODE (expr))
{
case INTEGER_CST:
if (TREE_OVERFLOW_P (expr))
expr = drop_tree_overflow (expr);
r.set (expr, expr);
return true;
case SSA_NAME:
r = gimple_range_global (expr);
return true;
case ADDR_EXPR:
{
// Handle &var which can show up in phi arguments.
bool ov;
if (tree_single_nonzero_warnv_p (expr, &ov))
{
r = range_nonzero (type);
return true;
}
break;
}
default:
break;
}
if (BINARY_CLASS_P (expr))
{
range_operator *op = range_op_handler (TREE_CODE (expr), type);
if (op)
{
int_range_max r0, r1;
range_of_expr (r0, TREE_OPERAND (expr, 0), stmt);
range_of_expr (r1, TREE_OPERAND (expr, 1), stmt);
op->fold_range (r, type, r0, r1);
}
else
r.set_varying (type);
return true;
}
if (UNARY_CLASS_P (expr))
{
range_operator *op = range_op_handler (TREE_CODE (expr), type);
if (op)
{
int_range_max r0;
range_of_expr (r0, TREE_OPERAND (expr, 0), stmt);
op->fold_range (r, type, r0, int_range<1> (type));
}
else
r.set_varying (type);
return true;
}
r.set_varying (type);
return true;
}
// Return the range for NAME from SSA_NAME_RANGE_INFO.
static inline void
get_ssa_name_range_info (irange &r, const_tree name)
{
tree type = TREE_TYPE (name);
gcc_checking_assert (!POINTER_TYPE_P (type));
gcc_checking_assert (TREE_CODE (name) == SSA_NAME);
range_info_def *ri = SSA_NAME_RANGE_INFO (name);
// Return VR_VARYING for SSA_NAMEs with NULL RANGE_INFO or SSA_NAMEs
// with integral types width > 2 * HOST_BITS_PER_WIDE_INT precision.
if (!ri || (GET_MODE_PRECISION (SCALAR_INT_TYPE_MODE (TREE_TYPE (name)))
> 2 * HOST_BITS_PER_WIDE_INT))
r.set_varying (type);
else
r.set (wide_int_to_tree (type, ri->get_min ()),
wide_int_to_tree (type, ri->get_max ()),
SSA_NAME_RANGE_TYPE (name));
}
// Return nonnull attribute of pointer NAME from SSA_NAME_PTR_INFO.
static inline bool
get_ssa_name_ptr_info_nonnull (const_tree name)
{
gcc_assert (POINTER_TYPE_P (TREE_TYPE (name)));
struct ptr_info_def *pi = SSA_NAME_PTR_INFO (name);
if (pi == NULL)
return false;
/* TODO Now pt->null is conservatively set to true in PTA
analysis. vrp is the only pass (including ipa-vrp)
that clears pt.null via set_ptr_nonnull when it knows
for sure. PTA will preserves the pt.null value set by VRP.
When PTA analysis is improved, pt.anything, pt.nonlocal
and pt.escaped may also has to be considered before
deciding that pointer cannot point to NULL. */
return !pi->pt.null;
}
// Update the global range for NAME into the SSA_RANGE_NAME_INFO and
// SSA_NAME_PTR_INFO fields. Return TRUE if the range for NAME was
// updated.
bool
update_global_range (irange &r, tree name)
{
tree type = TREE_TYPE (name);
if (r.undefined_p () || r.varying_p ())
return false;
if (INTEGRAL_TYPE_P (type))
{
// If a global range already exists, incorporate it.
if (SSA_NAME_RANGE_INFO (name))
{
value_range glob;
get_ssa_name_range_info (glob, name);
r.intersect (glob);
}
if (r.undefined_p ())
return false;
value_range vr = r;
set_range_info (name, vr);
return true;
}
else if (POINTER_TYPE_P (type))
{
if (r.nonzero_p ())
{
set_ptr_nonnull (name);
return true;
}
}
return false;
}
// Return the legacy global range for NAME if it has one, otherwise
// return VARYING.
static void
get_range_global (irange &r, tree name)
{
tree type = TREE_TYPE (name);
if (SSA_NAME_IS_DEFAULT_DEF (name))
{
tree sym = SSA_NAME_VAR (name);
// Adapted from vr_values::get_lattice_entry().
// Use a range from an SSA_NAME's available range.
if (TREE_CODE (sym) == PARM_DECL)
{
// Try to use the "nonnull" attribute to create ~[0, 0]
// anti-ranges for pointers. Note that this is only valid with
// default definitions of PARM_DECLs.
if (POINTER_TYPE_P (type)
&& ((cfun && nonnull_arg_p (sym))
|| get_ssa_name_ptr_info_nonnull (name)))
r.set_nonzero (type);
else if (INTEGRAL_TYPE_P (type))
{
get_ssa_name_range_info (r, name);
if (r.undefined_p ())
r.set_varying (type);
}
else
r.set_varying (type);
}
// If this is a local automatic with no definition, use undefined.
else if (TREE_CODE (sym) != RESULT_DECL)
r.set_undefined ();
else
r.set_varying (type);
}
else if (!POINTER_TYPE_P (type) && SSA_NAME_RANGE_INFO (name))
{
get_ssa_name_range_info (r, name);
if (r.undefined_p ())
r.set_varying (type);
}
else if (POINTER_TYPE_P (type) && SSA_NAME_PTR_INFO (name))
{
if (get_ssa_name_ptr_info_nonnull (name))
r.set_nonzero (type);
else
r.set_varying (type);
}
else
r.set_varying (type);
}
// This is where the ranger picks up global info to seed initial
// requests. It is a slightly restricted version of
// get_range_global() above.
//
// The reason for the difference is that we can always pick the
// default definition of an SSA with no adverse effects, but for other
// SSAs, if we pick things up to early, we may prematurely eliminate
// builtin_unreachables.
//
// Without this restriction, the test in g++.dg/tree-ssa/pr61034.C has
// all of its unreachable calls removed too early.
//
// See discussion here:
// https://gcc.gnu.org/pipermail/gcc-patches/2021-June/571709.html
value_range
gimple_range_global (tree name)
{
tree type = TREE_TYPE (name);
gcc_checking_assert (TREE_CODE (name) == SSA_NAME
&& irange::supports_type_p (type));
if (SSA_NAME_IS_DEFAULT_DEF (name) || (cfun && cfun->after_inlining)
|| is_a<gphi *> (SSA_NAME_DEF_STMT (name)))
{
value_range vr;
get_range_global (vr, name);
return vr;
}
return value_range (type);
}
// ----------------------------------------------
// global_range_query implementation.
global_range_query global_ranges;
bool
global_range_query::range_of_expr (irange &r, tree expr, gimple *stmt)
{
tree type = TREE_TYPE (expr);
if (!irange::supports_type_p (type) || !gimple_range_ssa_p (expr))
return get_tree_range (r, expr, stmt);
get_range_global (r, expr);
return true;
}
// Return any known relation between SSA1 and SSA2 before stmt S is executed.
// If GET_RANGE is true, query the range of both operands first to ensure
// the defintions have been processed and any relations have be created.
relation_kind
range_query::query_relation (gimple *s, tree ssa1, tree ssa2, bool get_range)
{
int_range_max tmp;
if (!m_oracle || TREE_CODE (ssa1) != SSA_NAME || TREE_CODE (ssa2) != SSA_NAME)
return VREL_NONE;
// Ensure ssa1 and ssa2 have both been evaluated.
if (get_range)
{
range_of_expr (tmp, ssa1, s);
range_of_expr (tmp, ssa2, s);
}
return m_oracle->query_relation (gimple_bb (s), ssa1, ssa2);
}
// Return any known relation between SSA1 and SSA2 on edge E.
// If GET_RANGE is true, query the range of both operands first to ensure
// the defintions have been processed and any relations have be created.
relation_kind
range_query::query_relation (edge e, tree ssa1, tree ssa2, bool get_range)
{
basic_block bb;
int_range_max tmp;
if (!m_oracle || TREE_CODE (ssa1) != SSA_NAME || TREE_CODE (ssa2) != SSA_NAME)
return VREL_NONE;
// Use destination block if it has a single predecessor, and this picks
// up any relation on the edge.
// Otherwise choose the src edge and the result is the same as on-exit.
if (!single_pred_p (e->dest))
bb = e->src;
else
bb = e->dest;
// Ensure ssa1 and ssa2 have both been evaluated.
if (get_range)
{
range_on_edge (tmp, e, ssa1);
range_on_edge (tmp, e, ssa2);
}
return m_oracle->query_relation (bb, ssa1, ssa2);
}
|