From: Richard Biener Date: Fri, 29 Apr 2022 06:45:48 +0000 (+0200) Subject: tree-optimization/105431 - another overflow in powi handling X-Git-Tag: releases/gcc-10.4.0~106 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e41fa23451c965516a37282268231933fd948845;p=thirdparty%2Fgcc.git tree-optimization/105431 - another overflow in powi handling This avoids undefined signed overflow when calling powi_as_mults_1. 2022-04-29 Richard Biener PR tree-optimization/105431 * tree-ssa-math-opts.c (powi_as_mults_1): Make n unsigned. (powi_as_mults): Use absu_hwi. (gimple_expand_builtin_powi): Remove now pointless n != -n check. (cherry picked from commit 44b09adb9bad99dd7e3017c5ecefed7f7c9a1590) --- diff --git a/gcc/tree-ssa-math-opts.c b/gcc/tree-ssa-math-opts.c index fbaa3deffe39..dd0b8c6f0577 100644 --- a/gcc/tree-ssa-math-opts.c +++ b/gcc/tree-ssa-math-opts.c @@ -1361,7 +1361,7 @@ powi_cost (HOST_WIDE_INT n) static tree powi_as_mults_1 (gimple_stmt_iterator *gsi, location_t loc, tree type, - HOST_WIDE_INT n, tree *cache) + unsigned HOST_WIDE_INT n, tree *cache) { tree op0, op1, ssa_target; unsigned HOST_WIDE_INT digit; @@ -1414,7 +1414,7 @@ powi_as_mults (gimple_stmt_iterator *gsi, location_t loc, memset (cache, 0, sizeof (cache)); cache[1] = arg0; - result = powi_as_mults_1 (gsi, loc, type, (n < 0) ? -n : n, cache); + result = powi_as_mults_1 (gsi, loc, type, absu_hwi (n), cache); if (n >= 0) return result; @@ -1438,11 +1438,9 @@ static tree gimple_expand_builtin_powi (gimple_stmt_iterator *gsi, location_t loc, tree arg0, HOST_WIDE_INT n) { - /* Avoid largest negative number. */ - if (n != -n - && ((n >= -1 && n <= 2) - || (optimize_function_for_speed_p (cfun) - && powi_cost (n) <= POWI_MAX_MULTS))) + if ((n >= -1 && n <= 2) + || (optimize_function_for_speed_p (cfun) + && powi_cost (n) <= POWI_MAX_MULTS)) return powi_as_mults (gsi, loc, arg0, n); return NULL_TREE;