From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 122898 invoked by alias); 8 Jun 2019 19:55:03 -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 122890 invoked by uid 89); 8 Jun 2019 19:55:02 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-8.9 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_2,GIT_PATCH_3,SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=improvements, gdb's, kevin, gdbs 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; Sat, 08 Jun 2019 19:55:01 +0000 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id C88F7307D854 for ; Sat, 8 Jun 2019 19:55:00 +0000 (UTC) Received: from f30-1.lan (ovpn-116-84.phx2.redhat.com [10.3.116.84]) by smtp.corp.redhat.com (Postfix) with ESMTP id 9EB9D608AB; Sat, 8 Jun 2019 19:55:00 +0000 (UTC) From: Kevin Buettner To: gdb-patches@sourceware.org Cc: Kevin Buettner Subject: [PATCH 0/4] Non-contiguous address range bug fixes / improvements Date: Sat, 08 Jun 2019 19:55:00 -0000 Message-Id: <20190608195434.26512-1-kevinb@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2019-06/txt/msg00169.txt.bz2 This four part series fixes some bugs associated with GDB's non-contiguous address range support. Kevin Buettner (4): Prefer symtab symbol over minsym for function names in non-contiguous blocks dwarf2-frame.c: Fix FDE processing bug involving non-contiguous ranges Allow display of negative offsets in print_address_symbolic() Improve test gdb.dwarf2/dw2-ranges-func.exp gdb/dwarf2-frame.c | 8 +- gdb/printcmd.c | 8 +- gdb/stack.c | 15 +- ...anges-func.c => dw2-ranges-func-hi-cold.c} | 44 +- .../gdb.dwarf2/dw2-ranges-func-lo-cold.c | 82 +++ gdb/testsuite/gdb.dwarf2/dw2-ranges-func.exp | 694 ++++++++++-------- 6 files changed, 505 insertions(+), 346 deletions(-) rename gdb/testsuite/gdb.dwarf2/{dw2-ranges-func.c => dw2-ranges-func-hi-cold.c} (85%) create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-ranges-func-lo-cold.c -- 2.21.0