From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) by sourceware.org (Postfix) with ESMTP id 3EE89382F0B7 for ; Wed, 25 May 2022 16:31:25 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 3EE89382F0B7 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=kernel.crashing.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=kernel.crashing.org Received: from gate.crashing.org (localhost.localdomain [127.0.0.1]) by gate.crashing.org (8.14.1/8.14.1) with ESMTP id 24PGTNYh018523; Wed, 25 May 2022 11:29:23 -0500 Received: (from segher@localhost) by gate.crashing.org (8.14.1/8.14.1/Submit) id 24PGTL45018518; Wed, 25 May 2022 11:29:21 -0500 X-Authentication-Warning: gate.crashing.org: segher set sender to segher@kernel.crashing.org using -f Date: Wed, 25 May 2022 11:29:21 -0500 From: Segher Boessenkool To: Andrew MacLeod Cc: Bernhard Reutner-Fischer , gcc-patches@gcc.gnu.org, Eric Botcazou , Alexander Monakov Subject: Re: [COMMITTED] Use infer instead of side-effect for ranges. Message-ID: <20220525162921.GN25951@gate.crashing.org> References: <18d5bea-e46c-e2f5-1495-ab55ddff6c47@ispras.ru> <11982059.O9o76ZdvQC@fomalhaut> <20220520143920.GF25951@gate.crashing.org> <4D02CEE1-16B3-49A2-8027-90B48EB9534D@gmail.com> <42194086-c1e5-2817-c14b-e5247f324ca3@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <42194086-c1e5-2817-c14b-e5247f324ca3@redhat.com> User-Agent: Mutt/1.4.2.3i X-Spam-Status: No, score=-3.2 required=5.0 tests=BAYES_00, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 May 2022 16:31:26 -0000 On Wed, May 25, 2022 at 10:35:31AM -0400, Andrew MacLeod wrote: > Executive decision made. > > gimple-range-side-effect.{h,cc}   -> gimple-range-infer.{h,cc} > > class stmt_side_effects  -->  class gimple_infer_range > > class side_effect_manager  -->  class infer_range_manager > > various APIs/comments with the term "side effect"  renamed to "infer > range" or some variation of tense. Thank you! Segher