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 44CF83858D1E for ; Wed, 2 Aug 2023 11:52:54 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 44CF83858D1E 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 1qRAPN-0003D5-5T; Wed, 02 Aug 2023 07:52:53 -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=zq36Pl8bGOLcIyzI/wexFW3OzSgiP6j97pmRLJiJSAQ=; b=WRDrqDvnx/Tf Titcd4XCBebUasb874DpI+kp0E85QADeLZmapNjAwymbF6nFte0ckdqnDwdjJX1kQgLjizpmTnuY2 /hqqk5wNoWM59Rztr9iv2jbARoTaHtw/WVqQuATXdFzu7pwlWE/3gCTt08H14tg3LgoHKrU/ZefcO kBdvjHzDYQODoRvEzk2vyYs57uEVb4FGwz/FDsvS9KukkVV9fbrFlJMFLaa35DtaOEBF8rdSxK/bF KzK91a4BNaFTq0CWEXvryAbOmswf48sZx7Qnv+gFiIfP1R3PVnettZEZRIv4ccOCaL/sl1679SWlK 0296YscUVMk5yFvwfWAWTg==; 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 1qRAPM-0005Az-Io; Wed, 02 Aug 2023 07:52:52 -0400 Date: Wed, 02 Aug 2023 14:52:59 +0300 Message-Id: <83sf91zmn8.fsf@gnu.org> From: Eli Zaretskii To: Abdul Basit Ijaz Cc: gdb-patches@sourceware.org, abdul.b.ijaz@intel.com, JiniSusan.George@amd.com, tom@tromey.com, blarsen@redhat.com In-Reply-To: <20230801224744.24433-5-abdul.b.ijaz@intel.com> (message from Abdul Basit Ijaz on Wed, 2 Aug 2023 00:47:44 +0200) Subject: Re: [PATCH v4 4/4] gdb: Skip trampoline frames in the stack for printing or finish command. References: <20230801224744.24433-1-abdul.b.ijaz@intel.com> <20230801224744.24433-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: > From: Abdul Basit Ijaz > Cc: abdul.b.ijaz@intel.com, > JiniSusan.George@amd.com, > tom@tromey.com, > eliz@gnu.org, > blarsen@redhat.com > Date: Wed, 2 Aug 2023 00:47:44 +0200 > > Before the change, GDB prints the frames indicated by the compiler with DIE > "DW_AT_trampoline" in the backtrace and finish command, but for better user > experience, all such frames can be hidden from the user. So, after this > change, now such frames are not printed any more in the backtrace command > and also the 'finish' command skips the trampoline calls. Thanks, I believe I already approved the documentation parts of this, right?