From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 84677 invoked by alias); 14 Dec 2017 02:48:36 -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 84590 invoked by uid 89); 14 Dec 2017 02:48:25 -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= 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; Thu, 14 Dec 2017 02:48:23 +0000 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 2C2325D689; Thu, 14 Dec 2017 02:48:22 +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 6BF8160C8E; Thu, 14 Dec 2017 02:48:21 +0000 (UTC) From: Sergio Durigan Junior To: GDB Patches Cc: Tom Tromey , Eli Zaretskii , Simon Marchi , Pedro Alves , Keith Seitz Subject: [PATCH v6 0/2] Implement pahole-like 'ptype /o' option (and do some code reorg) Date: Thu, 14 Dec 2017 02:48:00 -0000 Message-Id: <20171214024816.29629-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/msg00328.txt.bz2 Changes from v5: - Dropped support for vtable; too complicated for now, will tackle this later. - Fixed documentation issues. - Improved output format based on Pedro's suggestions. - "ptype /o" now defaults to "/tom"; added note on docs about this. - Added a few more tests. Added a description to the testcase. Use {} instead of "" for strings. Removed "optimize=-O0".