From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2746 invoked by alias); 12 Jan 2019 22:28:47 -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 2729 invoked by uid 89); 12 Jan 2019 22:28:46 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=non, HContent-Transfer-Encoding:8bit X-HELO: mailsec106.isp.belgacom.be Received: from mailsec106.isp.belgacom.be (HELO mailsec106.isp.belgacom.be) (195.238.20.102) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 12 Jan 2019 22:28:43 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=skynet.be; i=@skynet.be; q=dns/txt; s=securemail; t=1547332124; x=1578868124; h=from:to:subject:date:message-id:mime-version: content-transfer-encoding; bh=7aZ81QDzQ0Pnrv/Nlxr4EaL7BWo8mF/6GnScRXEt110=; b=WxC0a6Qw8EUorZ95TFV0DMaEZ6DDrUPdKM+9ufZoEBLaMOieFslnml9i dEyU5Cysfud+513zWIuLUbrmjVqwtg==; Received: from 184.205-67-87.adsl-dyn.isp.belgacom.be (HELO md.home) ([87.67.205.184]) by relay.skynet.be with ESMTP/TLS/DHE-RSA-AES128-GCM-SHA256; 12 Jan 2019 23:28:42 +0100 From: Philippe Waroquiers To: gdb-patches@sourceware.org Subject: [RFAv2 0/3] Have GDB better styled. Date: Sat, 12 Jan 2019 22:28:00 -0000 Message-Id: <20190112222835.16932-1-philippe.waroquiers@skynet.be> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2019-01/txt/msg00297.txt.bz2 This patch series ensures that more GDB commands are outputting file names, addresses and function names using style. In particular, 'info functions', rbreak, info sources will now be styled. Compared to the first version, this handles the comments of Tom: * when doing 'info functions', the non debugging min symbols are printed using function name style, when the non debugging min symbol corresponds to some text. * the commit log for function name style in the Ada and C type print gives more details about how these are called to print a function type and a function name.