From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17041 invoked by alias); 4 Feb 2016 17:29:42 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 16946 invoked by uid 89); 4 Feb 2016 17:29:41 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=circuit, sk:python-, sk:python X-HELO: mx2.suse.de Received: from mx2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (CAMELLIA256-SHA encrypted) ESMTPS; Thu, 04 Feb 2016 17:29:40 +0000 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 499AAACF7 for ; Thu, 4 Feb 2016 17:29:37 +0000 (UTC) Received: by starscream.home.jeffm.io (Postfix, from userid 1000) id 70A848992F; Thu, 4 Feb 2016 12:29:34 -0500 (EST) From: jeffm@suse.com To: gdb-patches@sourceware.org Cc: Jeff Mahoney Subject: [PATCH 0/7] Python extension patchset Date: Thu, 04 Feb 2016 17:29:00 -0000 Message-Id: <1454606973-31017-1-git-send-email-jeffm@suse.com> X-IsSubscribed: yes X-SW-Source: 2016-02/txt/msg00121.txt.bz2 From: Jeff Mahoney Hi all - Here's the cleaned up version of my python extension patchset. -Jeff Jeff Mahoney (7): check_types_equal: short circuit check if identical pointers are used py-value: properly handle unsigned and pointer types py-symbol: use Py_RETURN_NONE instead of open coding it py-symbol: Require a frame for lookup_symbol only when necessary py-symbol: export section name py-minsymbol: Add interface to access minimal_symbols py-regcache: Add interface to regcache gdb/Makefile.in | 12 ++ gdb/gdbtypes.c | 3 + gdb/python/py-infthread.c | 31 ++++ gdb/python/py-minsymbol.c | 390 +++++++++++++++++++++++++++++++++++++++++++ gdb/python/py-regcache.c | 367 ++++++++++++++++++++++++++++++++++++++++ gdb/python/py-symbol.c | 60 +++++-- gdb/python/py-value.c | 12 ++ gdb/python/python-internal.h | 12 ++ gdb/python/python.c | 8 +- 9 files changed, 876 insertions(+), 19 deletions(-) create mode 100644 gdb/python/py-minsymbol.c create mode 100644 gdb/python/py-regcache.c -- 2.1.4