From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by sourceware.org (Postfix) with ESMTPS id 582B2383F84F for ; Tue, 16 Jun 2020 09:50:58 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 582B2383F84F IronPort-SDR: SLo7xkU3ICGRUbXB/u/gBnptTCDQnka3wl16coNc9qR75l4YRK/0IDlQeRmk2JHGEOmNbomQyE v7c80HVBlttg== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2020 02:50:57 -0700 IronPort-SDR: jPn9Wr3wLbLfe6xMn/j7JElc/owCEQV4FuXnXqTROR4m40q62UuUE6vo441JP/TjTsoyVrZhY8 kjeCVhjNy5VA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,518,1583222400"; d="scan'208";a="351656861" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga001.jf.intel.com with ESMTP; 16 Jun 2020 02:50:56 -0700 Received: from ulvlx001.iul.intel.com (ulvlx001.iul.intel.com [172.28.207.17]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id 05G9otf3020474; Tue, 16 Jun 2020 10:50:55 +0100 Received: from ulvlx001.iul.intel.com (localhost [127.0.0.1]) by ulvlx001.iul.intel.com with ESMTP id 05G9ot8d004955; Tue, 16 Jun 2020 11:50:55 +0200 Received: (from taktemur@localhost) by ulvlx001.iul.intel.com with LOCAL id 05G9oqWw004951; Tue, 16 Jun 2020 11:50:52 +0200 From: Tankut Baris Aktemur To: gdb-patches@sourceware.org Cc: simark@simark.ca Subject: [PATCH v2 0/3] Handling multiple JITers Date: Tue, 16 Jun 2020 11:49:42 +0200 Message-Id: X-Mailer: git-send-email 1.7.0.7 X-Spam-Status: No, score=-17.3 required=5.0 tests=AC_FROM_MANY_DOTS, BAYES_00, KAM_DMARC_NONE, KAM_DMARC_STATUS, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=no 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: Tue, 16 Jun 2020 09:50:59 -0000 Hi, This is v2 of the series originally submitted at https://sourceware.org/pipermail/gdb-patches/2020-May/168959.html The updates in this revision are as follows: 1. I attempted to address Simon's comments on v1. 2. A separate patch has been added to make 'jit_even_handler' to take the JITer objfile as an argument (patch #1). 3. A separate patch has been added to convert two functions' return types from 'int' to 'bool' (patch #2). 4. Patch #1 and #2 in v1 have been merged into a single patch (#3 in v2). Because of the update mentioned in item (2) above, I don't think it's necessary to do a split. Regards. Baris Tankut Baris Aktemur (3): gdb/jit: pass the jiter objfile as an argument to jit_event_handler gdb/jit: return bool in jit_breakpoint_re_set_internal and jit_read_descriptor gdb/jit: enable tracking multiple jitter objfiles gdb/breakpoint.c | 3 +- gdb/jit.c | 205 +++++++++++-------- gdb/jit.h | 4 +- gdb/testsuite/gdb.base/jit-reader-simple.exp | 43 +++- 4 files changed, 167 insertions(+), 88 deletions(-) -- 2.17.1