From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 5D5833853D3D for ; Mon, 5 Jun 2023 12:03:25 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 5D5833853D3D Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gnu.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gnu.org Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q68vk-0005pP-BF; Mon, 05 Jun 2023 08:03:24 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=jOUuG7ib5+b9wZbP8hCPCfEvQnDeLi6ZF5HDsbgdLRA=; b=HCGXsIL++rw3 S2N0KH6kTBFYNpIf+9dFNA2IQEGinc1n0Iy9smq+FwOvEPRG3DZmRlFF6rjyiwbHx/TzQBORnNkGY YQPkoZf3dPTf7m5ebAly2j4x/m7L+Y2a271i6O6Tle9fShxevIdoe4ciXySfM+0W/IuRN3lhD237B FGXKsIkFf/bScfPMnJVZkzY3AbJ9QkXeAhx6pBS6WCKsSQeFGrGdgo4PaljbKGOZkEvZ/FmbSGUna Jp0V0WTTDzCIhEx2X9eUqx+cJztqdlfP8euo7TrtlSQg5NrOxWaC61rSfoBJtvrwN1ynZcbfOrNRa 0CwfqzAjQ5tq25luFBfWqw==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q68vj-0005PB-RK; Mon, 05 Jun 2023 08:03:24 -0400 Date: Mon, 05 Jun 2023 15:03:21 +0300 Message-Id: <83o7lu3yly.fsf@gnu.org> From: Eli Zaretskii To: Abdul Basit Ijaz Cc: gdb-patches@sourceware.org, JiniSusan.George@amd.com, tom@tromey.com In-Reply-To: <20230605110410.3078-5-abdul.b.ijaz@intel.com> (message from Abdul Basit Ijaz via Gdb-patches on Mon, 5 Jun 2023 13:04:10 +0200) Subject: Re: [PATCH v2 4/4] gdb: Skip trampoline frames in the stack for printing or finish command. References: <20230605110410.3078-1-abdul.b.ijaz@intel.com> <20230605110410.3078-5-abdul.b.ijaz@intel.com> X-Spam-Status: No, score=1.7 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_BARRACUDACENTRAL,SPF_HELO_PASS,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.6 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: > Cc: abdul.b.ijaz@intel.com, > JiniSusan.George@amd.com, > tom@tromey.com > Date: Mon, 5 Jun 2023 13:04:10 +0200 > From: Abdul Basit Ijaz via Gdb-patches > > gdb/doc/gdb.texinfo | 40 +++++++---- > gdb/infcmd.c | 14 ++++ > gdb/infrun.c | 8 +-- > gdb/infrun.h | 6 ++ > gdb/stack.c | 8 +++ > gdb/symtab.c | 12 ++++ > gdb/symtab.h | 5 ++ > gdb/testsuite/gdb.fortran/func-trampoline.exp | 69 +++++++++++++++++++ > gdb/testsuite/gdb.fortran/func-trampoline.f90 | 39 +++++++++++ > .../gdb.fortran/mixed-lang-stack.exp | 10 ++- > 10 files changed, 189 insertions(+), 22 deletions(-) > create mode 100644 gdb/testsuite/gdb.fortran/func-trampoline.exp > create mode 100644 gdb/testsuite/gdb.fortran/func-trampoline.f90 The documentation part is OK, thanks. Reviewed-By: Eli Zaretskii