From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-x32e.google.com (mail-wm1-x32e.google.com [IPv6:2a00:1450:4864:20::32e]) by sourceware.org (Postfix) with ESMTPS id 2F3C93858402 for ; Tue, 30 Nov 2021 13:14:58 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 2F3C93858402 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=embecosm.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=embecosm.com Received: by mail-wm1-x32e.google.com with SMTP id o29so17418984wms.2 for ; Tue, 30 Nov 2021 05:14:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=embecosm.com; s=google; h=date:from:to:subject:in-reply-to:message-id:references:user-agent :mime-version; bh=4yl2Ptr1fein82k6o237FwCFiy4GlDUFQy/UpKHr2SU=; b=JKm5axwGdwVwxIPRsawDSrbOzF8iZOv7M/0b39QvbKqfA7tcDaBVAGQ2rnIyFhO6rn RJvDAm1sVmIUY6rYWt4BP+WAV3+81bJWTMEN87dqZsNTXuN1esDStz8U98wAoGEmc+YD 6BdoKLroV39fQ/kClSMrenQ9Tbs7YewNisNRpj9vX7WUzASIc1k9BgP3S0RuYuWE8S53 SR8gbZhKchdyDmmSksrl6dXf4akbk7FBaC/lcNHq0yklf+BWh2bWw1CXnaSILjzvaSmG TRoj0nhdq1apV2o7MzHy7ta9JuysAZEhv1f9EWuy0fIRlyDtDMTJU2Nm9kw/uT/za2PH k/lg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:subject:in-reply-to:message-id :references:user-agent:mime-version; bh=4yl2Ptr1fein82k6o237FwCFiy4GlDUFQy/UpKHr2SU=; b=MY8zIEAah/xPW2sp6xgoBNQoOTo2o7U3+bhcSxJW2XwGjSvb6ZMFgMtXSKjJyldnl8 lgj61+zQuHxpOOiG+z9t0oqerOlYz+qtFSHf6sBYFpYfxxBsKN8+Z2S2B22aWASPAnr+ CLyrFUyhqDC7QflwF1EyE/iRE925AD2NDXH8jRaedkTK6ZCW++Uj+FRcX/Fzu1PdPdSR KZo7Uqf07vJYJD7dTw/NVGiRUNheQZoeEC8MQOmQ3Y/IiPMEZ+zdRGJQACYELjFbgxuM 6KFR3HhIdLqIT6GBlQS/xoh07eC8PLpBGU+RZBtTJM+CkJVPUKpSyLvrA4P/Uv7iwtoG 9kew== X-Gm-Message-State: AOAM530hjkniqsLWMuv2o5WNj4AnlezSnxWtCBdJ+KbT6nKzptgju3I9 bxtxzEgrY3nXT0lnHQfpZlcLFIe0TAJ5yg== X-Google-Smtp-Source: ABdhPJxEdYA2iHSFLaEmiOHjJaeTyBxZx5mprXSm53BVamT6mBl+BbqZ9LfWRikZaPyOeERpsVI9Tw== X-Received: by 2002:a7b:c310:: with SMTP id k16mr4938722wmj.169.1638278097215; Tue, 30 Nov 2021 05:14:57 -0800 (PST) Received: from [192.168.0.201] ([212.69.42.53]) by smtp.gmail.com with ESMTPSA id p12sm16571812wro.33.2021.11.30.05.14.56 for (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Tue, 30 Nov 2021 05:14:56 -0800 (PST) Date: Tue, 30 Nov 2021 13:14:55 +0000 (GMT) From: "Maciej W. Rozycki" To: gdb-patches@sourceware.org Subject: [PING^5][RFC] gdb: introduce limited array lengths while printing values In-Reply-To: <20211006172902.2691582-1-andrew.burgess@embecosm.com> Message-ID: References: <20211006172902.2691582-1-andrew.burgess@embecosm.com> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Spam-Status: No, score=-3.3 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.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) 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, 30 Nov 2021 13:15:00 -0000 On Wed, 6 Oct 2021, Andrew Burgess wrote: > This commit introduces the idea of loading only part of an array in > order to print it, what I call "limited length" arrays. Ping for: . Maciej