aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-object-size.c
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@gotplt.org>2021-12-17 09:34:44 +0530
committerSiddhesh Poyarekar <siddhesh@gotplt.org>2021-12-17 09:34:44 +0530
commit79a89108dd352cd9288f5de35481b1280c7588a5 (patch)
tree4aa9282ccfac93a496b2c43b67a4d508cbdc10e1 /gcc/tree-object-size.c
parent422f9eb7011b76c12ff00ffaee2bcc9cdddf16d5 (diff)
downloadgcc-79a89108dd352cd9288f5de35481b1280c7588a5.zip
gcc-79a89108dd352cd9288f5de35481b1280c7588a5.tar.gz
gcc-79a89108dd352cd9288f5de35481b1280c7588a5.tar.bz2
__builtin_dynamic_object_size: Recognize builtin
Recognize the __builtin_dynamic_object_size builtin and add paths in the object size path to deal with it, but treat it like __builtin_object_size for now. Also add tests to provide the same testing coverage for the new builtin name. gcc/ChangeLog: * builtins.def (BUILT_IN_DYNAMIC_OBJECT_SIZE): New builtin. * tree-object-size.h: Move object size type bits enum from tree-object-size.c and add new value OST_DYNAMIC. * builtins.c (expand_builtin, fold_builtin_2): Handle it. (fold_builtin_object_size): Handle new builtin and adjust for change to compute_builtin_object_size. * tree-object-size.c: Include builtins.h. (compute_builtin_object_size): Adjust. (early_object_sizes_execute_one, dynamic_object_sizes_execute_one): New functions. (object_sizes_execute): Rename insert_min_max_p argument to early. Handle BUILT_IN_DYNAMIC_OBJECT_SIZE and call the new functions. * doc/extend.texi (__builtin_dynamic_object_size): Document new builtin. gcc/testsuite/ChangeLog: * g++.dg/ext/builtin-dynamic-object-size1.C: New test. * g++.dg/ext/builtin-dynamic-object-size2.C: Likewise. * gcc.dg/builtin-dynamic-alloc-size.c: Likewise. * gcc.dg/builtin-dynamic-object-size-1.c: Likewise. * gcc.dg/builtin-dynamic-object-size-10.c: Likewise. * gcc.dg/builtin-dynamic-object-size-11.c: Likewise. * gcc.dg/builtin-dynamic-object-size-12.c: Likewise. * gcc.dg/builtin-dynamic-object-size-13.c: Likewise. * gcc.dg/builtin-dynamic-object-size-14.c: Likewise. * gcc.dg/builtin-dynamic-object-size-15.c: Likewise. * gcc.dg/builtin-dynamic-object-size-16.c: Likewise. * gcc.dg/builtin-dynamic-object-size-17.c: Likewise. * gcc.dg/builtin-dynamic-object-size-18.c: Likewise. * gcc.dg/builtin-dynamic-object-size-19.c: Likewise. * gcc.dg/builtin-dynamic-object-size-2.c: Likewise. * gcc.dg/builtin-dynamic-object-size-3.c: Likewise. * gcc.dg/builtin-dynamic-object-size-4.c: Likewise. * gcc.dg/builtin-dynamic-object-size-5.c: Likewise. * gcc.dg/builtin-dynamic-object-size-6.c: Likewise. * gcc.dg/builtin-dynamic-object-size-7.c: Likewise. * gcc.dg/builtin-dynamic-object-size-8.c: Likewise. * gcc.dg/builtin-dynamic-object-size-9.c: Likewise. * gcc.dg/builtin-object-size-16.c: Adjust to allow inclusion from builtin-dynamic-object-size-16.c. * gcc.dg/builtin-object-size-17.c: Likewise. Signed-off-by: Siddhesh Poyarekar <siddhesh@gotplt.org>
Diffstat (limited to 'gcc/tree-object-size.c')
-rw-r--r--gcc/tree-object-size.c152
1 files changed, 113 insertions, 39 deletions
diff --git a/gcc/tree-object-size.c b/gcc/tree-object-size.c
index 32ef6dd..71f6b74 100644
--- a/gcc/tree-object-size.c
+++ b/gcc/tree-object-size.c
@@ -34,6 +34,7 @@ along with GCC; see the file COPYING3. If not see
#include "tree-cfg.h"
#include "stringpool.h"
#include "attribs.h"
+#include "builtins.h"
struct object_size_info
{
@@ -53,13 +54,6 @@ struct GTY(()) object_size
tree wholesize;
};
-enum
-{
- OST_SUBOBJECT = 1,
- OST_MINIMUM = 2,
- OST_END = 4,
-};
-
static tree compute_object_offset (const_tree, const_tree);
static bool addr_object_size (struct object_size_info *,
const_tree, int, tree *, tree *t = NULL);
@@ -760,8 +754,9 @@ compute_builtin_object_size (tree ptr, int object_size_type,
object_sizes_grow (object_size_type);
if (dump_file)
{
- fprintf (dump_file, "Computing %s %sobject size for ",
+ fprintf (dump_file, "Computing %s %s%sobject size for ",
(object_size_type & OST_MINIMUM) ? "minimum" : "maximum",
+ (object_size_type & OST_DYNAMIC) ? "dynamic " : "",
(object_size_type & OST_SUBOBJECT) ? "sub" : "");
print_generic_expr (dump_file, ptr, dump_flags);
fprintf (dump_file, ":\n");
@@ -850,9 +845,10 @@ compute_builtin_object_size (tree ptr, int object_size_type,
print_generic_expr (dump_file, ssa_name (i),
dump_flags);
fprintf (dump_file,
- ": %s %sobject size ",
+ ": %s %s%sobject size ",
((object_size_type & OST_MINIMUM) ? "minimum"
: "maximum"),
+ (object_size_type & OST_DYNAMIC) ? "dynamic " : "",
(object_size_type & OST_SUBOBJECT) ? "sub" : "");
print_generic_expr (dump_file, object_sizes_get (&osi, i),
dump_flags);
@@ -1404,8 +1400,85 @@ do_valueize (tree t)
return t;
}
+/* Process a __builtin_object_size or __builtin_dynamic_object_size call in
+ CALL early for subobjects before any object information is lost due to
+ optimization. Insert a MIN or MAX expression of the result and
+ __builtin_object_size at I so that it may be processed in the second pass.
+ __builtin_dynamic_object_size is treated like __builtin_object_size here
+ since we're only looking for constant bounds. */
+
+static void
+early_object_sizes_execute_one (gimple_stmt_iterator *i, gimple *call)
+{
+ tree ost = gimple_call_arg (call, 1);
+ tree lhs = gimple_call_lhs (call);
+ gcc_assert (lhs != NULL_TREE);
+
+ if (!tree_fits_uhwi_p (ost))
+ return;
+
+ unsigned HOST_WIDE_INT object_size_type = tree_to_uhwi (ost);
+ tree ptr = gimple_call_arg (call, 0);
+
+ if (object_size_type != 1 && object_size_type != 3)
+ return;
+
+ if (TREE_CODE (ptr) != ADDR_EXPR && TREE_CODE (ptr) != SSA_NAME)
+ return;
+
+ tree type = TREE_TYPE (lhs);
+ tree bytes;
+ if (!compute_builtin_object_size (ptr, object_size_type, &bytes)
+ || !int_fits_type_p (bytes, type))
+ return;
+
+ tree tem = make_ssa_name (type);
+ gimple_call_set_lhs (call, tem);
+ enum tree_code code = object_size_type & OST_MINIMUM ? MAX_EXPR : MIN_EXPR;
+ tree cst = fold_convert (type, bytes);
+ gimple *g = gimple_build_assign (lhs, code, tem, cst);
+ gsi_insert_after (i, g, GSI_NEW_STMT);
+ update_stmt (call);
+}
+
+/* Attempt to fold one __builtin_dynamic_object_size call in CALL into an
+ expression and insert it at I. Return true if it succeeds. */
+
+static bool
+dynamic_object_sizes_execute_one (gimple_stmt_iterator *i, gimple *call)
+{
+ gcc_assert (gimple_call_num_args (call) == 2);
+
+ tree args[2];
+ args[0] = gimple_call_arg (call, 0);
+ args[1] = gimple_call_arg (call, 1);
+
+ location_t loc = EXPR_LOC_OR_LOC (args[0], input_location);
+ tree result_type = gimple_call_return_type (as_a <gcall *> (call));
+ tree result = fold_builtin_call_array (loc, result_type,
+ gimple_call_fn (call), 2, args);
+
+ if (!result)
+ return false;
+
+ /* fold_builtin_call_array may wrap the result inside a
+ NOP_EXPR. */
+ STRIP_NOPS (result);
+ gimplify_and_update_call_from_tree (i, result);
+
+ if (dump_file && (dump_flags & TDF_DETAILS))
+ {
+ fprintf (dump_file, "Simplified (dynamic)\n ");
+ print_gimple_stmt (dump_file, call, 0, dump_flags);
+ fprintf (dump_file, " to ");
+ print_generic_expr (dump_file, result);
+ fprintf (dump_file, "\n");
+ }
+ return true;
+}
+
static unsigned int
-object_sizes_execute (function *fun, bool insert_min_max_p)
+object_sizes_execute (function *fun, bool early)
{
basic_block bb;
FOR_EACH_BB_FN (bb, fun)
@@ -1414,8 +1487,12 @@ object_sizes_execute (function *fun, bool insert_min_max_p)
for (i = gsi_start_bb (bb); !gsi_end_p (i); gsi_next (&i))
{
tree result;
+ bool dynamic = false;
+
gimple *call = gsi_stmt (i);
- if (!gimple_call_builtin_p (call, BUILT_IN_OBJECT_SIZE))
+ if (gimple_call_builtin_p (call, BUILT_IN_DYNAMIC_OBJECT_SIZE))
+ dynamic = true;
+ else if (!gimple_call_builtin_p (call, BUILT_IN_OBJECT_SIZE))
continue;
tree lhs = gimple_call_lhs (call);
@@ -1424,42 +1501,39 @@ object_sizes_execute (function *fun, bool insert_min_max_p)
init_object_sizes ();
- /* If insert_min_max_p, only attempt to fold
+ /* If early, only attempt to fold
__builtin_object_size (x, 1) and __builtin_object_size (x, 3),
and rather than folding the builtin to the constant if any,
create a MIN_EXPR or MAX_EXPR of the __builtin_object_size
- call result and the computed constant. */
- if (insert_min_max_p)
+ call result and the computed constant. Do the same for
+ __builtin_dynamic_object_size too. */
+ if (early)
{
- tree ost = gimple_call_arg (call, 1);
- if (tree_fits_uhwi_p (ost))
+ early_object_sizes_execute_one (&i, call);
+ continue;
+ }
+
+ if (dynamic)
+ {
+ if (dynamic_object_sizes_execute_one (&i, call))
+ continue;
+ else
{
- unsigned HOST_WIDE_INT object_size_type = tree_to_uhwi (ost);
- tree ptr = gimple_call_arg (call, 0);
- if ((object_size_type & OST_SUBOBJECT)
- && (TREE_CODE (ptr) == ADDR_EXPR
- || TREE_CODE (ptr) == SSA_NAME))
+ /* If we could not find a suitable size expression, lower to
+ __builtin_object_size so that we may at least get a
+ constant lower or higher estimate. */
+ tree bosfn = builtin_decl_implicit (BUILT_IN_OBJECT_SIZE);
+ gimple_call_set_fndecl (call, bosfn);
+ update_stmt (call);
+
+ if (dump_file && (dump_flags & TDF_DETAILS))
{
- tree type = TREE_TYPE (lhs);
- tree bytes;
- if (compute_builtin_object_size (ptr, object_size_type,
- &bytes)
- && int_fits_type_p (bytes, type))
- {
- tree tem = make_ssa_name (type);
- gimple_call_set_lhs (call, tem);
- enum tree_code code
- = (object_size_type & OST_MINIMUM
- ? MAX_EXPR : MIN_EXPR);
- tree cst = fold_convert (type, bytes);
- gimple *g
- = gimple_build_assign (lhs, code, tem, cst);
- gsi_insert_after (&i, g, GSI_NEW_STMT);
- update_stmt (call);
- }
+ print_generic_expr (dump_file, gimple_call_arg (call, 0),
+ dump_flags);
+ fprintf (dump_file,
+ ": Retrying as __builtin_object_size\n");
}
}
- continue;
}
result = gimple_fold_stmt_to_constant (call, do_valueize);