From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io1-xd30.google.com (mail-io1-xd30.google.com [IPv6:2607:f8b0:4864:20::d30]) by sourceware.org (Postfix) with ESMTPS id 5B8F23858434 for ; Thu, 26 May 2022 13:48:55 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 5B8F23858434 Received: by mail-io1-xd30.google.com with SMTP id a10so1562538ioe.9 for ; Thu, 26 May 2022 06:48:55 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=7wh0jQQqgOlepKeUE1kXaLmKNc4kYZSYeJ66Fk12yd8=; b=AM/K0QKDSEMpOTLnXai3N2h7LIN1eSB1+hzOsvDgdnFe4sukokX3+uaTIa27DEu+52 /ZSOqy66zAdEPmVC0mfREftF1Rf1SUw4kEPg+mEi264QbJlNrm5LoJxn1sctniMcyPAs K+DY3oTqIt09e05Ez5G9Uc8ATMaEd0Mw5JSI/81xaYnOQ0iIe8TMROBxVVAQSyoxpDBD UvsUBWU/VLGdiZi2x44mm3trv5+yA5qMidxUrTb1ViOy5QCIKXfxwdRRJNY9XYrsggkx LrdZt2yyGKxIZ/GUlP3jgCK8wlDo3kb+rbQALLEtlhZNnxtjKmcc+WBDy8cKTDHXCYly ef+w== X-Gm-Message-State: AOAM531Q7vD6SxUun8JHItLjcLPS+NdHaLRoPG0f0aXIhOxri2Lw80lV L3nNXy+xZEXSeR55ABC8lGHgJA== X-Google-Smtp-Source: ABdhPJw+PcBF0pYE2gZHIv3lbtgwv/KDL0U9GUjRmben9k9bvujtNDj4Awfhl2Kd/PisrMeKvGelmQ== X-Received: by 2002:a5d:9b11:0:b0:664:716c:d758 with SMTP id y17-20020a5d9b11000000b00664716cd758mr9165998ion.157.1653572934478; Thu, 26 May 2022 06:48:54 -0700 (PDT) Received: from murgatroyd (71-211-158-194.hlrn.qwest.net. [71.211.158.194]) by smtp.gmail.com with ESMTPSA id u20-20020a926014000000b002cde6e35302sm499875ilb.76.2022.05.26.06.48.53 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 26 May 2022 06:48:53 -0700 (PDT) From: Tom Tromey To: Tom Tromey via Gdb-patches Cc: Tom Tromey Subject: Re: [PATCH] Finalize each cooked index separately References: <20220516184614.1171732-1-tromey@adacore.com> X-Attribution: Tom Date: Thu, 26 May 2022 07:48:53 -0600 In-Reply-To: <20220516184614.1171732-1-tromey@adacore.com> (Tom Tromey via Gdb-patches's message of "Mon, 16 May 2022 12:46:14 -0600") Message-ID: <87czg08kvu.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-5.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 May 2022 13:48:57 -0000 >>>>> "Tom" == Tom Tromey via Gdb-patches writes: Tom> This can be sped up by parallelizing, at a small memory cost. Now Tom> each index is finalized on its own, in a worker thread. I'm checking this in now. Tom