From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id UG6xEq/rsF8pOwAAWB0awg (envelope-from ) for ; Sun, 15 Nov 2020 03:49:51 -0500 Received: by simark.ca (Postfix, from userid 112) id 4AE071F08D; Sun, 15 Nov 2020 03:49:51 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=0.3 required=5.0 tests=MAILING_LIST_MULTI,RDNS_NONE autolearn=no autolearn_force=no version=3.4.2 Received: from sourceware.org (unknown [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id EF9321E58F for ; Sun, 15 Nov 2020 03:49:50 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 839293857820; Sun, 15 Nov 2020 08:49:50 +0000 (GMT) Received: from rock.gnat.com (rock.gnat.com [IPv6:2620:20:4000:0:a9e:1ff:fe9b:1d1]) by sourceware.org (Postfix) with ESMTP id 0B1D93857802 for ; Sun, 15 Nov 2020 08:49:48 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 0B1D93857802 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=adacore.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=brobecke@adacore.com Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id DECD55604E; Sun, 15 Nov 2020 03:49:47 -0500 (EST) X-Virus-Scanned: Debian amavisd-new at gnat.com Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id uE59mNarDw+z; Sun, 15 Nov 2020 03:49:47 -0500 (EST) Received: from tron.gnat.com (tron.gnat.com [205.232.38.10]) by rock.gnat.com (Postfix) with ESMTP id CDF7D5604D; Sun, 15 Nov 2020 03:49:47 -0500 (EST) Received: by tron.gnat.com (Postfix, from userid 4233) id C8FA1111; Sun, 15 Nov 2020 03:49:47 -0500 (EST) From: Joel Brobecker To: gdb-patches@sourceware.org Subject: RFA: Various enhancements to the fixed-point support implementation Date: Sun, 15 Nov 2020 03:49:38 -0500 Message-Id: <1605430184-81335-1-git-send-email-brobecker@adacore.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1604817017-25807-1-git-send-email-brobecker@adacore.com> References: <1604817017-25807-1-git-send-email-brobecker@adacore.com> 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: , Cc: Simon Marchi Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" Hello, The following patch series implements the suggestions Simon made in reviewing the first patch series, which I felt deserved to be their own patch. I think it allows us to review those changes independently of the first implementation (which Simon said was find to push). - [RFA 1/6] change gmp_string_asprintf to return an std::string - [RFA 2/6] gmp-utils: Convert the read/write methods to using - [RFA 3/6] gdbtypes.h: Get rid of the TYPE_FIXED_POINT_INFO macro - [RFA 4/6] Make fixed_point_type_base_type a method of struct type - [RFA 5/6] Make function fixed_point_scaling_factor a method of struct - [RFA 6/6] valarith.c: Replace INIT_VAL_WITH_FIXED_POINT_VAL macro by The patches were tested on x86_64-linux. Thank you! -- Joel