public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Andrew MacLeod <amacleod@redhat.com>
To: Richard Biener <richard.guenther@gmail.com>
Cc: gcc-patches <gcc-patches@gcc.gnu.org>, Aldy Hernandez <aldyh@redhat.com>
Subject: Re: [PATCH] PR tree-optimization/103821 - Prevent exponential range calculations.
Date: Tue, 11 Jan 2022 09:15:06 -0500	[thread overview]
Message-ID: <f0de360c-5146-b202-d8d3-14082e3340ba@redhat.com> (raw)
In-Reply-To: <CAFiYyc0o1BDy4e9A9LubHCvo--Te5WnP4UkNb-=NZj3irG9mcg@mail.gmail.com>

On 1/11/22 02:01, Richard Biener wrote:
> On Tue, Jan 11, 2022 at 12:28 AM Andrew MacLeod via Gcc-patches
> <gcc-patches@gcc.gnu.org> wrote:
>> This test case demonstrates an unnoticed exponential situation in range-ops.
>>
>> We end up unrolling the  loop, and the pattern of code creates a set of
>> cascading multiplies for which we can precisely evaluate them with
>> sub-ranges.
>>
>> For instance, we calculated :
>>
>> _38 = int [8192, 8192][24576, 24576][40960, 40960][57344, 57344]
>>
>> so _38 has 4 sub-ranges, and then we calculate:
>>
>> _39 = _38 * _38;
>>
>> we do 16 sub-range multiplications and end up with:  int [67108864,
>> 67108864][201326592, 201326592][335544320, 335544320][469762048,
>> 469762048][603979776, 603979776][1006632960, 1006632960][1409286144,
>> 1409286144][1677721600, 1677721600][+INF, +INF]
>>
>> This feeds other multiplies (_39 * _39)  and progresses rapidly to blow
>> up the number of sub-ranges in subsequent operations.
>>
>> Folding of sub-ranges is an O(n*m) process. We perform the operation on
>> each pair of sub-ranges and union them.   Values like _38 * _38 that
>> continue feeding each other quickly become exponential.
>>
>> Then combining that with union (an inherently linear operation over the
>> number of sub-ranges) at each step of the way adds an additional
>> quadratic operation on top of the exponential factor.
>>
>> This patch adjusts the wi_fold routine to recognize when the calculation
>> is moving in an exponential direction, simply produce a summary result
>> instead of a precise one.  The attached patch does this if (#LH
>> sub-ranges * #RH sub-ranges > 12)... then it just performs the operation
>> with the lower and upper bound instead.    We could choose a different
>> number, but that one seems to keep things under control, and allows us
>> to process up to a 3x4 operation for precision (there is a testcase in
>> the testsuite for this combination gcc.dg/tree-ssa/pr61839_2.c).
>> Longer term, we might want adjust this routine to be slightly smarter
>> than that, but this is a virtually zero-risk solution this late in the
>> release cycle.
> I'm not sure we can do smarter in a good way other than maybe having
> a range helper that reduces a N component range to M components
> with maintaining as much precision as possible?  Like for [1, 1] u [3, 3]
> u [100, 100] and requesting at most 2 elements merge [1, 1] and [3, 3]
> and not [100, 100].  That should eventually be doable in O(n log n).
Yeah, similar to my line of thought.  It may also be worth considering 
something similar after we have calculated a range sometimes.  if the 
resulting range has more than N sub-ranges, look to see if it is 
worthwhile trying to compress it at that point too maybe.  Something for 
the next stage-1 to consider.

Andrew


      reply	other threads:[~2022-01-11 14:15 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-10 23:27 Andrew MacLeod
2022-01-11  7:01 ` Richard Biener
2022-01-11 14:15   ` Andrew MacLeod [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f0de360c-5146-b202-d8d3-14082e3340ba@redhat.com \
    --to=amacleod@redhat.com \
    --cc=aldyh@redhat.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=richard.guenther@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).