From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15853 invoked by alias); 27 Nov 2013 17:52:52 -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 15711 invoked by uid 89); 27 Nov 2013 17:52:51 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=1.0 required=5.0 tests=AWL,BAYES_05,RDNS_NONE,SPF_HELO_PASS,SPF_PASS,UNWANTED_LANGUAGE_BODY,URIBL_BLOCKED autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Received: from Unknown (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 27 Nov 2013 17:52:50 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id rARHqgij015853 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 27 Nov 2013 12:52:42 -0500 Received: from brno.lan (ovpn01.gateway.prod.ext.ams2.redhat.com [10.39.146.11]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id rARHqegq008883; Wed, 27 Nov 2013 12:52:41 -0500 From: Pedro Alves To: gdb-patches@sourceware.org Cc: Andrew Burgess Subject: [PATCH 1/2] Make "set debug frame 1" use the standard print routine for optimized out values. Date: Wed, 27 Nov 2013 18:14:00 -0000 Message-Id: <1385574760-26557-2-git-send-email-palves@redhat.com> In-Reply-To: <1385574760-26557-1-git-send-email-palves@redhat.com> References: <5208D50F.8020109@broadcom.com> <1385574760-26557-1-git-send-email-palves@redhat.com> X-SW-Source: 2013-11/txt/msg00853.txt.bz2 From: Andrew Burgess ... - { frame_unwind_register_value (frame=0,regnum=7(rsp),...) -> optimized out } + { frame_unwind_register_value (frame=0,regnum=7(rsp),...) -> } ... Tested on x86_64 Fedora 17. 2013-11-27 Andrew Burgess * frame.c: Include "valprint.h". (frame_unwind_register_value): Use value_optimized_out. * value.c (value_fetch_lazy): Likewise. --- gdb/frame.c | 6 +++++- gdb/value.c | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/gdb/frame.c b/gdb/frame.c index f77ce75..4e6e06c 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -44,6 +44,7 @@ #include "inline-frame.h" #include "tracepoint.h" #include "hashtab.h" +#include "valprint.h" static struct frame_info *get_prev_frame_1 (struct frame_info *this_frame); static struct frame_info *get_prev_frame_raw (struct frame_info *this_frame); @@ -1047,7 +1048,10 @@ frame_unwind_register_value (struct frame_info *frame, int regnum) { fprintf_unfiltered (gdb_stdlog, "->"); if (value_optimized_out (value)) - fprintf_unfiltered (gdb_stdlog, " optimized out"); + { + fprintf_unfiltered (gdb_stdlog, " "); + val_print_optimized_out (value, gdb_stdlog); + } else { if (VALUE_LVAL (value) == lval_register) diff --git a/gdb/value.c b/gdb/value.c index 8052f52..a64e7e1 100644 --- a/gdb/value.c +++ b/gdb/value.c @@ -3572,7 +3572,10 @@ value_fetch_lazy (struct value *val) fprintf_unfiltered (gdb_stdlog, "->"); if (value_optimized_out (new_val)) - fprintf_unfiltered (gdb_stdlog, " optimized out"); + { + fprintf_unfiltered (gdb_stdlog, " "); + val_print_optimized_out (new_val, gdb_stdlog); + } else { int i; -- 1.7.11.7