diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2021-06-10 13:03:33 +0200 |
---|---|---|
committer | Aldy Hernandez <aldyh@redhat.com> | 2021-06-10 13:07:54 +0200 |
commit | 7c097d18c11dc7cccd38537d6d8641e2d5913dee (patch) | |
tree | 5fdf6cddd9158e60234961995794bf6942c084e9 /gcc/value-query.cc | |
parent | 05c4dabb71476ddea8d409fd41f1e97d62d0b5f4 (diff) | |
download | gcc-7c097d18c11dc7cccd38537d6d8641e2d5913dee.zip gcc-7c097d18c11dc7cccd38537d6d8641e2d5913dee.tar.gz gcc-7c097d18c11dc7cccd38537d6d8641e2d5913dee.tar.bz2 |
Adjust variable names and comments in value-query.*
Now that range_of_expr can take arbitrary tree expressions, not just
SSA names or constants, the method names and comments are slightly out
of date. This patch adjusts them to reflect reality.
gcc/ChangeLog:
* value-query.cc (value_query::value_on_edge): Rename name to
expr.
(range_query::range_on_edge): Same.
(range_query::value_of_expr): Same.
(range_query::value_on_edge): Same.
* value-query.h (class value_query): Same.
(class range_query): Same.
Diffstat (limited to 'gcc/value-query.cc')
-rw-r--r-- | gcc/value-query.cc | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gcc/value-query.cc b/gcc/value-query.cc index 821f224..9047e27 100644 --- a/gcc/value-query.cc +++ b/gcc/value-query.cc @@ -36,9 +36,9 @@ along with GCC; see the file COPYING3. If not see // value_query default methods. tree -value_query::value_on_edge (edge, tree name) +value_query::value_on_edge (edge, tree expr) { - return value_of_expr (name); + return value_of_expr (expr); } tree @@ -57,9 +57,9 @@ value_query::value_of_stmt (gimple *stmt, tree name) // range_query default methods. bool -range_query::range_on_edge (irange &r, edge, tree name) +range_query::range_on_edge (irange &r, edge, tree expr) { - return range_of_expr (r, name); + return range_of_expr (r, expr); } bool @@ -76,20 +76,20 @@ range_query::range_of_stmt (irange &r, gimple *stmt, tree name) } tree -range_query::value_of_expr (tree name, gimple *stmt) +range_query::value_of_expr (tree expr, gimple *stmt) { tree t; int_range_max r; - if (!irange::supports_type_p (TREE_TYPE (name))) + if (!irange::supports_type_p (TREE_TYPE (expr))) return NULL_TREE; - if (range_of_expr (r, name, stmt)) + 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, name); + range_of_expr (r, expr); if (r.singleton_p (&t)) return t; } @@ -97,19 +97,19 @@ range_query::value_of_expr (tree name, gimple *stmt) } tree -range_query::value_on_edge (edge e, tree name) +range_query::value_on_edge (edge e, tree expr) { tree t; int_range_max r; - if (!irange::supports_type_p (TREE_TYPE (name))) + if (!irange::supports_type_p (TREE_TYPE (expr))) return NULL_TREE; - if (range_on_edge (r, e, name)) + 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, name); + range_of_expr (r, expr); if (r.singleton_p (&t)) return t; } |