From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20269 invoked by alias); 24 Jul 2007 13:16:47 -0000 Received: (qmail 20253 invoked by uid 22791); 24 Jul 2007 13:16:46 -0000 X-Spam-Check-By: sourceware.org Received: from smtp-out.google.com (HELO smtp-out.google.com) (216.239.33.17) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 24 Jul 2007 13:16:40 +0000 Received: from zps76.corp.google.com (zps76.corp.google.com [172.25.146.76]) by smtp-out.google.com with ESMTP id l6ODGTBf027137; Tue, 24 Jul 2007 14:16:30 +0100 Received: from dhcp-172-29-27-107.tor.corp.google.com (dhcp-172-29-27-107.tor.corp.google.com [172.29.27.107]) by zps76.corp.google.com with ESMTP id l6ODGD3I006408; Tue, 24 Jul 2007 06:16:13 -0700 Message-ID: <46A5FB94.3010209@google.com> Date: Tue, 24 Jul 2007 15:09:00 -0000 From: Diego Novillo User-Agent: Thunderbird 2.0.0.5 (Macintosh/20070716) MIME-Version: 1.0 To: Daniel Jacobowitz , Jan Hubicka , gcc-patches@gcc.gnu.org Subject: Re: Reduce startup cost of compiler (patch 3) References: <20070724050556.GD10270@kam.mff.cuni.cz> <46A5DFBF.7040403@google.com> <20070724131149.GA2388@caradoc.them.org> In-Reply-To: <20070724131149.GA2388@caradoc.them.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2007-07/txt/msg01728.txt.bz2 On 7/24/07 9:11 AM, Daniel Jacobowitz wrote: > On Tue, Jul 24, 2007 at 07:17:19AM -0400, Diego Novillo wrote: >>> + if (cached_reg_restore_code[reg][mode]) >>> + return cached_reg_restore_code[reg][mode]; >>> + /* polute our cache. */ >> s/polute/pollute/ > > Probably populate, actually... And here I was thinking he meant making the cache entry stale. But yes, on second read, it should be populate. Thanks.