From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-il1-x141.google.com (mail-il1-x141.google.com [IPv6:2607:f8b0:4864:20::141]) by sourceware.org (Postfix) with ESMTPS id 848AE3857839 for ; Thu, 1 Oct 2020 11:07:46 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 848AE3857839 Received: by mail-il1-x141.google.com with SMTP id q5so5695222ilj.1 for ; Thu, 01 Oct 2020 04:07:46 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=gbI9ychfTJ19/3dgtrUqtQsig6XNA25kgEL/GEXdM84=; b=X2n8pozzmUn6zpTElN8UR5T//g5dhQ687OP32hsP5wSj9ZlgxtaDH/1ZWmG2sRo5Xv zKpS5P/eo+KrxJz2xB6h7eJE85NPkQX6JUbyijsfMYahiRdnJEzU3ZYAgV+We/8Q5hxe JQ4la5boOzyN+QQu6anJVdOZ6zVU/xOlCp1gKVGYwP/kYYKBGkGSGkK0xVEMZrjl0UU0 z6xfzyI+AEFdozOnEqL2iUiODlgnmbfqhIq82LYdwKD5zj7tXf+Ak0yIw1fKRIwsTcUC t2fEmDgWf1jkp1sLpy9TBf6aNiOOkMm/RshkNvQdbbri/3bQUOulxwEwM1s39mdz3es1 Ko1w== X-Gm-Message-State: AOAM5313tX9Wnr9sEWphtn7EeZ5vM98PxWHWqQo+gPL+25GPRgkPB8ui /XpSHUCa7GwMsMqf5fFJnXOHobM5aM93Ffi1KRc= X-Google-Smtp-Source: ABdhPJyr1DAijnSiWED/jV+mmA3tgvvQYbFq3/pbxnLkiFGed43tuiA5WPu2bbAYiHITEPa4Pq5TPJelDSq6b7yPm6o= X-Received: by 2002:a92:d68b:: with SMTP id p11mr1765917iln.59.1601550466082; Thu, 01 Oct 2020 04:07:46 -0700 (PDT) MIME-Version: 1.0 References: <20201001101559.77163-1-colomar.6.4.3@gmail.com> <20201001101559.77163-6-colomar.6.4.3@gmail.com> In-Reply-To: <20201001101559.77163-6-colomar.6.4.3@gmail.com> From: Jonathan Wakely Date: Thu, 1 Oct 2020 12:07:35 +0100 Message-ID: Subject: Re: [PATCH 05/16] system_data_types.7: Add int_fastN_t family of types To: Alejandro Colomar Cc: mtk.manpages@gmail.com, linux-man@vger.kernel.org, GNU C Library , "gcc@gcc.gnu.org" Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-6.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Oct 2020 11:07:47 -0000 On Thu, 1 Oct 2020 at 11:25, Alejandro Colomar via Gcc wrote: > > Signed-off-by: Alejandro Colomar > --- > man7/system_data_types.7 | 76 ++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 76 insertions(+) > > diff --git a/man7/system_data_types.7 b/man7/system_data_types.7 > index a301c2309..07de6417f 100644 > --- a/man7/system_data_types.7 > +++ b/man7/system_data_types.7 > @@ -329,6 +329,82 @@ C99 and later; POSIX.1-2001 and later. > See also: > .BR imaxdiv (3) > .RE > +.\"------------------------------------- int_fastN_t ------------------/ > +.TP > +.IR int_fast N _t > +.RS > +Include: > +.IR . > +Alternatively, > +.IR . > +.PP > +.IR int_fast8_t , > +.IR int_fast16_t , > +.IR int_fast32_t , > +.I int_fast64_t > +.PP > +The fastest signed integer type > +of a width of at least N bits, > +N being the value specified in its type name. > +According to the C language standard, they shall be > +capable of storing values in the range > +.RB [ INT_FAST N _MIN , > +.BR INT_FAST N _MAX ], > +substituting N by the appropriate number. > +.PP > +The length modifiers for the > +.IR int_fast N _t > +types for the > +.BR printf (3) > +family of functions > +are expanded by macros of the forms > +.BR PRIdFAST N > +and > +.BR PRIiFAST N > +(defined in > +.IR ); > +resulting for example in > +.B %"PRIdFAST64" > +or > +.B %"PRIiFAST64" > +for printing > +.I int_fast64_t > +values. > +The length modifiers for the > +.IR int_fast N _t > +types for the > +.BR scanf (3) > +family of functions > +are expanded by macros of the forms > +.BR SCNdFAST N > +and > +.BR SCNiFAST N, > +(defined in > +.IR ); > +resulting for example in > +.B %"SCNdFAST8" > +or > +.B %"SCNiFAST8" > +for scanning > +.I int_fast8_t > +values. > +.PP > +Conforming to: > +C99 and later; POSIX.1-2001 and later. > +.PP > +Notes: > +Some of these types may be optimized for size > +instead of raw performance. I'm not sure what this tells me as a programmer. What does "raw performance" means exactly? The text above says it's "the fastest", but then it says "may be optimized for size". I don't know how to interpret this. Is it fast or is it small, or something else? Is it optimized for small size? Natural word size? Cacheline size? I prefer the phrasing of the caveats in the C and POSIX standards which just say it might not be fastest for all purposes. How about "Where there is no single type that is fastest for all purposes, the implementation may choose any type with the required signedness and at least the minimum width." I don't see anything in this man page saying that the types are all typedefs, rather than new types that are distinct from the standard integer types. That seems like useful information.