From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 58057 invoked by alias); 11 Dec 2017 19:58:07 -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 58041 invoked by uid 89); 11 Dec 2017 19:58:06 -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,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=movement X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 11 Dec 2017 19:58:05 +0000 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 84AEEC04B32E; Mon, 11 Dec 2017 19:58:04 +0000 (UTC) Received: from psique.yyz.redhat.com (unused-10-15-17-193.yyz.redhat.com [10.15.17.193]) by smtp.corp.redhat.com (Postfix) with ESMTP id 0933C60177; Mon, 11 Dec 2017 19:58:03 +0000 (UTC) From: Sergio Durigan Junior To: GDB Patches Cc: Tom Tromey , Eli Zaretskii , Simon Marchi Subject: [PATCH v3 0/2] Implement pahole-like 'ptype /o' option (and do some code reorg) Date: Mon, 11 Dec 2017 19:58:00 -0000 Message-Id: <20171211195757.18044-1-sergiodj@redhat.com> In-Reply-To: <20171121160709.23248-1-sergiodj@redhat.com> References: <20171121160709.23248-1-sergiodj@redhat.com> X-IsSubscribed: yes X-SW-Source: 2017-12/txt/msg00245.txt.bz2 Changes from v2: - Split the patch between #1 (code reorganization) and #2 (actual implementation of 'ptype /o'). - Add a few more tests; fix a few thinkos in the testcase. - Remove leftover code. Hi, This is the third version of the patch, which is now a series. Functionality hasn't changed; this is mostly a reorganization of the patch into two patches (one for code movement, another for the actual implementation of 'ptype /o'). Each patch contains an explanation of what it does. The docs have already been approved by Eli.