From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2140) id 4C3CC385781F; Thu, 8 Jun 2023 10:59:07 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4C3CC385781F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1686221947; bh=8gqI4JkrU3RgDdFSqVWpfmHqeAHFXvVVfuSRvz6v0Mw=; h=From:To:Subject:Date:From; b=Si4i/EC1gsD2Wa3CiG2cawbwE2KGhr3HE+ABg4RxT6zeKAYccc1EeDLKi0tjngLqL eTdCZL5u2B4joc/JWL4xVEBm46AilJq8/KYzVL3UWLonK3Nf2RhkEZlJnFrqGP+SFx nUeKHT8HcVXSN6oLbAet0vf/x8cG0Soodb3xPE9k= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Alexandre Oliva To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/aoliva/heads/testme)] hardcfr: optionally disable in leaf functions X-Act-Checkin: gcc X-Git-Author: Alexandre Oliva X-Git-Refname: refs/users/aoliva/heads/testme X-Git-Oldrev: f5057562f04b9ddc866223539ff8421ab5090ae8 X-Git-Newrev: 3334b477965df23c819f92118bdfd157d2832fbb Message-Id: <20230608105907.4C3CC385781F@sourceware.org> Date: Thu, 8 Jun 2023 10:59:07 +0000 (GMT) List-Id: https://gcc.gnu.org/g:3334b477965df23c819f92118bdfd157d2832fbb commit 3334b477965df23c819f92118bdfd157d2832fbb Author: Alexandre Oliva Date: Wed Oct 19 20:36:30 2022 -0300 hardcfr: optionally disable in leaf functions Introduce -fhardcfr-skip-leaf to avoid control flow redundancy instrumentation of leaf functions, where the benefit is far more limited. for gcc/ChangeLog * common.opt (fhardcfr-skip-leaf): New. * doc/invoke.texi: Document it. * gimple-harden-control-flow.cc (pass_harden_control_flow_redundancy::execute): Honor it. for gcc/testsuite/ChangeLog * c-c++-common/torture/harden-cfr-skip-leaf.c: New. Diff: --- gcc/common.opt | 4 ++++ gcc/doc/invoke.texi | 8 +++++-- gcc/gimple-harden-control-flow.cc | 27 ++++++++++++++++++++++ .../c-c++-common/torture/harden-cfr-skip-leaf.c | 10 ++++++++ 4 files changed, 47 insertions(+), 2 deletions(-) diff --git a/gcc/common.opt b/gcc/common.opt index 574299edace..feea4920c9d 100644 --- a/gcc/common.opt +++ b/gcc/common.opt @@ -1805,6 +1805,10 @@ fharden-control-flow-redundancy Common Var(flag_harden_control_flow_redundancy) Optimization Harden control flow by recording and checking execution paths. +fhardcfr-skip-leaf +Common Var(flag_harden_control_flow_redundancy_skip_leaf) Optimization +Disable CFR in leaf functions. + fhardcfr-check-returning-calls Common Var(flag_harden_control_flow_redundancy_check_returning_calls) Init(-1) Optimization Check CFR execution paths also before calls followed by returns of their results. diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi index 3d9c5f753a4..2703a914dca 100644 --- a/gcc/doc/invoke.texi +++ b/gcc/doc/invoke.texi @@ -635,8 +635,8 @@ Objective-C and Objective-C++ Dialects}. -fsanitize-undefined-trap-on-error -fbounds-check -fcf-protection=@r{[}full@r{|}branch@r{|}return@r{|}none@r{|}check@r{]} -fharden-compares -fharden-conditional-branches --fharden-control-flow-redundancy -fhardcfr-check-exceptions --fhardcfr-check-returning-calls +-fharden-control-flow-redundancy -fhardcfr-skip-leaf +-fhardcfr-check-exceptions -fhardcfr-check-returning-calls -fhardcfr-check-noreturn-calls=@r{[}always@r{|}not-always@r{|}nothrow@r{|}never@r{]} -fstack-protector -fstack-protector-all -fstack-protector-strong -fstack-protector-explicit -fstack-check @@ -17263,6 +17263,10 @@ would also have verification issued before the call, but these possibilities are merely theoretical, as these conditions can only be met when using custom compiler plugins. +@opindex fhardcfr-skip-leaf +@item -fhardcfr-skip-leaf +Disable @option{-fharden-control-flow-redundancy} in leaf functions. + @opindex fhardcfr-check-exceptions @opindex fno-hardcfr-check-exceptions @item -fhardcfr-check-exceptions diff --git a/gcc/gimple-harden-control-flow.cc b/gcc/gimple-harden-control-flow.cc index 3e6fe2db479..3998fd0d293 100644 --- a/gcc/gimple-harden-control-flow.cc +++ b/gcc/gimple-harden-control-flow.cc @@ -1114,6 +1114,33 @@ pass_harden_control_flow_redundancy::execute (function *fun) basic_block bb; basic_block bb_eh_cleanup = NULL; + if (flag_harden_control_flow_redundancy_skip_leaf) + { + bool found_calls_p = false; + + FOR_EACH_BB_FN (bb, fun) + { + for (gimple_stmt_iterator gsi = gsi_last_bb (bb); + !gsi_end_p (gsi); gsi_prev (&gsi)) + if (is_a (gsi_stmt (gsi))) + { + found_calls_p = true; + break; + } + if (found_calls_p) + break; + } + + if (!found_calls_p) + { + if (dump_file) + fprintf (dump_file, + "Disabling CFR for leaf function, as requested\n"); + + return 0; + } + } + if (check_at_escaping_exceptions) { int lp_eh_cleanup = -1; diff --git a/gcc/testsuite/c-c++-common/torture/harden-cfr-skip-leaf.c b/gcc/testsuite/c-c++-common/torture/harden-cfr-skip-leaf.c new file mode 100644 index 00000000000..85ecaa04d04 --- /dev/null +++ b/gcc/testsuite/c-c++-common/torture/harden-cfr-skip-leaf.c @@ -0,0 +1,10 @@ +/* { dg-do run } */ +/* { dg-options "-fharden-control-flow-redundancy -fhardcfr-skip-leaf -fdump-tree-hardcfr -ffat-lto-objects" } */ + +/* Test skipping instrumentation of leaf functions. */ + +#include "harden-cfr.c" + +/* { dg-final { scan-tree-dump-times "__builtin_trap" 0 "hardcfr" } } */ +/* Only main isn't leaf. */ +/* { dg-final { scan-tree-dump-times "__hardcfr_check" 2 "hardcfr" } } */