From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 58190 invoked by alias); 11 May 2019 18:56:14 -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 58182 invoked by uid 89); 11 May 2019 18:56:14 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-9.7 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.1 spammy=handy, updating, HX-Languages-Length:792, HContent-Transfer-Encoding:8bit X-HELO: mailsec109.isp.belgacom.be Received: from mailsec109.isp.belgacom.be (HELO mailsec109.isp.belgacom.be) (195.238.20.105) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 11 May 2019 18:56:11 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=skynet.be; i=@skynet.be; q=dns/txt; s=securemail; t=1557600972; x=1589136972; h=from:to:subject:date:message-id:mime-version: content-transfer-encoding; bh=YD7rCSWXkEMGXXV74HPm23i47Pv7vy9Ssa5fHXZY2xo=; b=biw/flAjwO41MLeGMLu8qEmj7NPqgbnnpnxZy8ITi7Y2T5NG3vsBdZCb eybScdMxHxgjImFPKm2zePmG/0SGpw==; Received: from 59.151-129-109.adsl-dyn.isp.belgacom.be (HELO md.home) ([109.129.151.59]) by relay.skynet.be with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 11 May 2019 20:56:09 +0200 From: Philippe Waroquiers To: gdb-patches@sourceware.org Subject: [RFAv2 0/3] Implement 'set print frame-info|frame-arguments Date: Sat, 11 May 2019 18:56:00 -0000 Message-Id: <20190511185603.17231-1-philippe.waroquiers@skynet.be> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2019-05/txt/msg00281.txt.bz2 When printing big stacktraces having a lot of functions with a lot of arguments, it can be handy to see a lot less information in the printed frames. With the new settings, it is possible to have backtraces such as: (gdb) bt #0 break_me () #1 call_me (...) #2 main () (gdb) that are only showing the level, the function name and the presence of arguments. Compared to V1, the changes are: * Handled the comment of Andreas Schwab : do not abbreviate words in 'set print fram-info' values, and use dash instead of underscore. * Handled the comment of Tom about updating py-framefilter.c + updated py-framefilter.exp to test the new setting with python frame filter. * Handled the comments of Eli about the documentation and NEWS.