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 E167B3858289 for ; Wed, 2 Aug 2023 11:52:11 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org E167B3858289 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 1qRAOf-0002vO-P9; Wed, 02 Aug 2023 07:52:09 -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=cDtDnpnSukQgISEXvV1prpOEgFw2wq+HkYS4Sxat33I=; b=Y/aSG9BuC3Bo FVAmj27WqiTdEvo8GUlUxfWSYNNjwiFDF1f1raixLZOhDc33Cn+Jneq/3Ixd8bjSMw0KyW1vqyRny Y2UZVfMb9n8y17XYAo4S1rgpuU3PxiwY0ZXnB0D2GAXFfwi7Of4zekiijnxtSv/LfTsgoTg5G6W1r jol0ScfvDgF8I7hgJZckvwNnv0LrPSKlTJVmsqf/XNcd28nW0vYDOTJU5FLMjgIFZSw3oTzx+Yrc5 CP2Av4BoPXB2ZnnBm1FMUIsIMC/wUmuDW1pvNftuJQr0BluxrHbhUU9EzBTTx4r/lFJa/tAgMQaRN xKrP+iCDvQwQ9ZzrzSbNVQ==; 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 1qRAOf-00052b-8r; Wed, 02 Aug 2023 07:52:09 -0400 Date: Wed, 02 Aug 2023 14:52:16 +0300 Message-Id: <83ttthzmof.fsf@gnu.org> From: Eli Zaretskii To: Abdul Basit Ijaz Cc: gdb-patches@sourceware.org, JiniSusan.George@amd.com, tom@tromey.com, blarsen@redhat.com, nils-christian.kempke@intel.com In-Reply-To: <20230801224744.24433-4-abdul.b.ijaz@intel.com> (message from Abdul Basit Ijaz on Wed, 2 Aug 2023 00:47:43 +0200) Subject: Re: [PATCH v4 3/4] gdb/infrun: handle stepping through functions with DW_AT_trampoline References: <20230801224744.24433-1-abdul.b.ijaz@intel.com> <20230801224744.24433-4-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, > Nils-Christian Kempke > Date: Wed, 2 Aug 2023 00:47:43 +0200 > > From: Nils-Christian Kempke > > This patch makes infrun continue stepping into and through trampoline > functions marked via the DW_AT_trampoline in DWARF. The attribute can > be emitted by the compiler for certain subroutines/inlined subroutines > that are compiler generated and should be hidden from a user. Thanks. I believe I already approved the documentation parts, and there was no changes since then in the documentation parts, right?