From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.polymtl.ca (smtp.polymtl.ca [132.207.4.11]) by sourceware.org (Postfix) with ESMTPS id 29010385700B for ; Wed, 22 Jul 2020 12:48:34 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 29010385700B Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 06MCmQNM005438 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Wed, 22 Jul 2020 08:48:31 -0400 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 06MCmQNM005438 Received: from [10.0.0.11] (173-246-6-90.qc.cable.ebox.net [173.246.6.90]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id DEF111E794; Wed, 22 Jul 2020 08:48:25 -0400 (EDT) Subject: Re: [PATCH v4 0/9] Handling multiple JITers To: Tankut Baris Aktemur , gdb-patches@sourceware.org References: From: Simon Marchi Message-ID: <099c2704-81c7-c5a5-42c3-65486d7e6507@polymtl.ca> Date: Wed, 22 Jul 2020 08:48:20 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: fr Content-Transfer-Encoding: 7bit X-Poly-FromMTA: (simark.ca [158.69.221.121]) at Wed, 22 Jul 2020 12:48:26 +0000 X-Spam-Status: No, score=-3.8 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) 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: Wed, 22 Jul 2020 12:48:35 -0000 On 2020-07-21 2:06 p.m., Tankut Baris Aktemur wrote: > Hi, > > This is v4 of the series originally submitted at > > https://sourceware.org/pipermail/gdb-patches/2020-May/168959.html > > On top of v3, which is available at > > https://sourceware.org/pipermail/gdb-patches/2020-July/170434.html > > this version addresses Simon's comments. The most significant change > is that `jiter_objfile_data` and `jited_objfile_data` structs have been > moved to `jit.h` from `objfiles.h`. The other changes are minor format > fixes. > > The patches are also available at > > https://github.com/barisaktemur/gdb/commits/multi-jit-v4 > > Regards. > Baris Thanks, v3 was all good with my comments addressed, so this LGTM. Simon