From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1075) id AB6723858406; Sun, 7 Nov 2021 22:01:01 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AB6723858406 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jan Hubicka To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-4981] Limit range of modref-max-depth X-Act-Checkin: gcc X-Git-Author: Jan Hubicka X-Git-Refname: refs/heads/master X-Git-Oldrev: 2be794fae034818a36e097c60adf612f343e24fe X-Git-Newrev: 87e57378ba554212a32a0743fee03481d1289318 Message-Id: <20211107220101.AB6723858406@sourceware.org> Date: Sun, 7 Nov 2021 22:01:01 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Nov 2021 22:01:01 -0000 https://gcc.gnu.org/g:87e57378ba554212a32a0743fee03481d1289318 commit r12-4981-g87e57378ba554212a32a0743fee03481d1289318 Author: Jan Hubicka Date: Sun Nov 7 22:58:19 2021 +0100 Limit range of modref-max-depth gcc/ChangeLog: PR ipa/103055 * params.opt (modref-max-depth): Add range. (modref-max-adjustments): Fix range. Diff: --- gcc/params.opt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/params.opt b/gcc/params.opt index 6096854aa78..4b409d55a2d 100644 --- a/gcc/params.opt +++ b/gcc/params.opt @@ -1036,7 +1036,7 @@ Common Joined UInteger Var(param_modref_max_tests) Init(64) Param Optimization Maximum number of tests performed by modref query. -param=modref-max-depth= -Common Joined UInteger Var(param_modref_max_depth) Init(256) Param Optimization +Common Joined UInteger Var(param_modref_max_depth) Init(256) IntegerRange(1, 65536) Param Optimization Maximum depth of DFS walk used by modref escape analysis. -param=modref-max-escape-points= @@ -1044,7 +1044,7 @@ Common Joined UInteger Var(param_modref_max_escape_points) Init(256) Param Optim Maximum number of escape points tracked by modref per SSA-name. -param=modref-max-adjustments= -Common Joined UInteger Var(param_modref_max_adjustments) Init(8) IntegerRange (0, 254) Param Optimization +Common Joined UInteger Var(param_modref_max_adjustments) Init(8) IntegerRange(0, 254) Param Optimization Maximum number of times a given range is adjusted during the dataflow. -param=tm-max-aggregate-size=