From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oi1-x22d.google.com (mail-oi1-x22d.google.com [IPv6:2607:f8b0:4864:20::22d]) by sourceware.org (Postfix) with ESMTPS id 647A0384519A for ; Sat, 26 Nov 2022 01:49:25 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 647A0384519A Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=linaro.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=linaro.org Received: by mail-oi1-x22d.google.com with SMTP id m204so6079238oib.6 for ; Fri, 25 Nov 2022 17:49:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:message-id:date:in-reply-to:subject:cc:to:from :user-agent:references:from:to:cc:subject:date:message-id:reply-to; bh=DXDleSrB4m1lrsma3VdsZVeYunxEzGSPmb2CKiiDen4=; b=OZfmn15/9tqJSN+P3gCluO0gY9cQD0dBrkSSGupDDKmAGSe22qIthh5A3iG0lnoL+O GeX3qMyor8XtxjAilnJ5zXAuKw7kicI9QU+M0+QPPs0OdvgP28Lb/a1rl9VNERDYamFd /bMvdILZbADeW5qlqcGcjf9SS6fGdJtOzYJmdEoPl5R2NUgCcHMScywMXeKx6e5In+UI vagWYuouugOeZoim3muq9PUNi0Ai8veWw53rDoCvx32KjxCY8ydx6CQLcbCDgqBG+tlG Js+OPhIebfYZRI0z5rIduL3jfm2CrdVTyPM5/dsClCESpAT+hCae9dcQfzXRiBpwoPMy dZxA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=mime-version:message-id:date:in-reply-to:subject:cc:to:from :user-agent:references:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=DXDleSrB4m1lrsma3VdsZVeYunxEzGSPmb2CKiiDen4=; b=7ECXmzqyUbepDMKRxzLu6LWy+XOL3QXrLtoqh6xuBNJu2nY6rW1wA+RMPqqRo7anyn 7+9WbB7jclT8rGTBu+imKp8YDLgh5wIwfzVD/LFiHX8Ni5txuwamK5r5rJjPt5tJ6rU5 acJlG7f2HP+NuNaCf8pFCRlfiwdmUNBnOqvmTVq5LBQL+eGsEQsUCxOSlAL3f3KiFp83 RcHqy9KknTgf6UXMRQfKESPi9LrpKkjpAuJIekrHZRjLt35w6958S5C7QVkaTLFNNJnD iIO6/ZSLDOrOdXpzKUQyRBGSu7Ify/O364Ma5iR7ggbf2DVva14ncTaFQtoNlelIenH5 hO4A== X-Gm-Message-State: ANoB5pnFFDWlrYrKJkYjLW8U6rIAtxvT2zrB61/wBy7NwZxik4cPqtrM F+MhI3HMd7m4gO/qkf/TH2UFMGfL8XplPQ== X-Google-Smtp-Source: AA0mqf6/b+3/8dEqq8ZM70QKjTUHuUKwMxh+fATGnbI/KfLlYoVb8DPnNQIW0xf2VygMbYnWiwH/6Q== X-Received: by 2002:a05:6808:1b0d:b0:35a:a414:df0f with SMTP id bx13-20020a0568081b0d00b0035aa414df0fmr10984054oib.118.1669427364748; Fri, 25 Nov 2022 17:49:24 -0800 (PST) Received: from localhost ([2804:14d:7e39:8470:41ee:c7fc:c991:eee6]) by smtp.gmail.com with ESMTPSA id u10-20020a0568301f4a00b0066c7733be43sm2269344oth.30.2022.11.25.17.49.23 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 25 Nov 2022 17:49:24 -0800 (PST) References: <20220908064151.3959930-1-thiago.bauermann@linaro.org> <20220908064151.3959930-7-thiago.bauermann@linaro.org> User-agent: mu4e 1.8.11; emacs 28.2 From: Thiago Jung Bauermann To: Luis Machado Cc: gdb-patches@sourceware.org Subject: Re: [PATCH 6/8] gdbserver/linux-aarch64: When inferior stops, update its target description In-reply-to: Date: Sat, 26 Nov 2022 01:49:22 +0000 Message-ID: <87leny8oyl.fsf@linaro.org> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Luis Machado writes: > On 9/8/22 07:41, Thiago Jung Bauermann via Gdb-patches wrote: >> Introduce new arch_update_tdesc method to the linux_process_target class. >> This allows aarch64-linux to probe the inferior's vq register and provide >> an updated target description reflecting the new vector length. >> --- >> gdbserver/linux-aarch64-low.cc | 21 +++++++++++++++++++++ >> gdbserver/linux-low.cc | 18 ++++++++++++++++++ >> gdbserver/linux-low.h | 5 +++++ >> 3 files changed, 44 insertions(+) > > LGTM for the aarch64 parts. Someone else must approve the generic changes. Thanks! Since in v2 patch 5 became much smaller, I squashed it into this one. The changes are described in the per-patch changes list in the cover letter. -- Thiago