From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io1-xd36.google.com (mail-io1-xd36.google.com [IPv6:2607:f8b0:4864:20::d36]) by sourceware.org (Postfix) with ESMTPS id 2E73A3852754 for ; Tue, 14 Jun 2022 15:08:20 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 2E73A3852754 Received: by mail-io1-xd36.google.com with SMTP id n11so9669740iod.4 for ; Tue, 14 Jun 2022 08:08:20 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=1H3lOm1fdsIyTRzqTRQB90ClG7SKPrRL5PJ0B6Jx81M=; b=0WdVNhO30U9mOHi1vQ3hShu5R/RpFVvpHi5mR4/4piJJTiIez/Ncm6HeCz1ewqOYO1 zwGlJmgAodZoLqQihKDUWuYzhxNjy0L10GvkdYcw6YNn57/DN0xjpOezIe7n3NF7BTrK s0rpZWrV1aF28RuSruhHwkkC2hTzkVxWPv/VBuPzoBj1YTerxt23scz7u6segj1/f1pL n1kLKCPAMPgtIH9XMT5QIDnTvxGmjs4QiBbcqzeCLx3iWDd27wb1XN9NFE2xgFJcGRII qbUWAv+3Hby+wL4KEiFIQVfA0aixzDEpub1mICV/X1k/s4SbfD9vu+PCxHTcF+1EPH4E RUSg== X-Gm-Message-State: AOAM531JhFrL1S1z3mfLq6pMyJSkC0jLl1aMwcTkJBvMMBS2zGJ9xtBt rcuUL1iFsiCF2GbUZ2XfT64fMDzy+GfEpg== X-Google-Smtp-Source: ABdhPJyku08gACKdb5yXQENOmlJV+JW9AxEyStfQuSGnLESBFKk0ybsdnqNzAoOYWR6f74nSw/PiUg== X-Received: by 2002:a05:6602:160e:b0:64f:8c93:6a40 with SMTP id x14-20020a056602160e00b0064f8c936a40mr2915895iow.8.1655219299520; Tue, 14 Jun 2022 08:08:19 -0700 (PDT) Received: from murgatroyd (71-211-187-180.hlrn.qwest.net. [71.211.187.180]) by smtp.gmail.com with ESMTPSA id m36-20020a026d24000000b0032e21876ea8sm4954995jac.72.2022.06.14.08.08.18 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 14 Jun 2022 08:08:18 -0700 (PDT) From: Tom Tromey To: Tom Tromey via Gdb-patches Cc: Tom Tromey Subject: Re: [PATCH 0/3] Ravenscar simplification + FPU feature References: <20220531125731.1280943-1-tromey@adacore.com> X-Attribution: Tom Date: Tue, 14 Jun 2022 09:08:17 -0600 In-Reply-To: <20220531125731.1280943-1-tromey@adacore.com> (Tom Tromey via Gdb-patches's message of "Tue, 31 May 2022 06:57:28 -0600") Message-ID: <87pmjbxoym.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-4.7 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, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Jun 2022 15:08:21 -0000 >>>>> "Tom" == Tom Tromey via Gdb-patches writes: Tom> This series simplifies the Ravenscar layer in gdb, making it more Tom> table-based and not code-based. It also fixes a bug, and adds support Tom> for a missing feature -- some Ravenscar targets manage the FPU state Tom> on demand, and so the runtime has to be queried to decide where to Tom> find FP registers. Tom> Tested using the internal AdaCore test suite. I've never gotten cross Tom> testing working using qemu with the gdb test suite, and would Tom> Ravenscar need extra setup on top of that. I'm checking these in now. Tom